IasCmdReply.IasCommandType
index
/home/ubuntu/IasRoot/lib/python3.10/site-packages/IasCmdReply/IasCommandType.py

Created on Dec 16, 2019
 
@author: acaproni

 
Classes
       
enum.Enum(builtins.object)
IasCommandType

 
class IasCommandType(enum.Enum)
    IasCommandType(value, names=None, *, module=None, qualname=None, type=None, start=1)
 
The supported command as defined in the java
org.eso.ias.command.CommandType
 
 
Method resolution order:
IasCommandType
enum.Enum
builtins.object

Data and other attributes defined here:
ACK = <IasCommandType.ACK: 4>
PING = <IasCommandType.PING: 0>
RESTART = <IasCommandType.RESTART: 2>
SET_LOG_LEVEL = <IasCommandType.SET_LOG_LEVEL: 3>
SHUTDOWN = <IasCommandType.SHUTDOWN: 1>
TF_CHANGED = <IasCommandType.TF_CHANGED: 5>

Data descriptors inherited from enum.Enum:
name
The name of the Enum member.
value
The value of the Enum member.

Readonly properties inherited from enum.EnumMeta:
__members__
Returns a mapping of member name->value.
 
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.