| |
- builtins.object
-
- IasReply
class IasReply(builtins.object) |
|
IasReply(sender, dest, cmd: IasCmdReply.IasCommandType.IasCommandType | str, id, exitStatus: IasCmdReply.IasCmdExitStatus.IasCmdExitStatus | str, recvTStamp, procTStamp, properties=None)
The python data structure for a Reply to be published in the kafka reply topic.
It is the python equivalent of the java org.eso.ias.command.ReplyMessage
All parameters are strings, the timestamps are string formatted as ISO-8601 |
|
Methods defined here:
- __init__(self, sender, dest, cmd: IasCmdReply.IasCommandType.IasCommandType | str, id, exitStatus: IasCmdReply.IasCmdExitStatus.IasCmdExitStatus | str, recvTStamp, procTStamp, properties=None)
- Initialize self. See help(type(self)) for accurate signature.
- toJSonString(self)
- @return the JSON representation of the IasReply
Static methods defined here:
- fromJSon(jsonStr)
- Factory method to build a IasReply from a JSON string
@param jsonStr the json string representing the IasCommand
Data descriptors defined here:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes defined here:
- __annotations__ = {'command': <enum 'IasCommandType'>, 'exitStatus': <enum 'IasCmdExitStatus'>, 'id': <class 'str'>}
- command = None
- destFullRunningId = None
- exitStatus = None
- id = None
- processedTStamp = None
- properties = None
- receptionTStamp = None
- senderFullRunningId = None
| |