Command¶
-
class
lsst.ts.MTMount.commands.
Command
(**kwargs)¶ Bases:
lsst.ts.MTMount.base_message.BaseMessage
Base class for commands.
Set sequence_id to an incrementing integer (that eventually wraps around), by default.
Attributes Summary
has_extra_data
sequence_id_generator
Methods Summary
encode
()Return the data encoded as a bytes string, including the standard terminator. from_str_fields
(fields)Construct a BaseMessage from a list of string fields. str_fields
()Return the data as a list of string fields. Attributes Documentation
-
has_extra_data
= False¶
-
sequence_id_generator
= <generator object index_generator.<locals>.index_impl>¶
Methods Documentation
-
encode
()¶ Return the data encoded as a bytes string, including the standard terminator.
-
classmethod
from_str_fields
(fields)¶ Construct a BaseMessage from a list of string fields.
Parameters: - fields :
List
[str
] Data fields, as strings:
- There must be at least one field per
field_infos
entry. - If
has_extra_data
is treue then additional fields are provided as theextra_data
argument, else additional fields result in an error.
- There must be at least one field per
Raises: - ValueError
If the wrong number of fields is presented or the data cannot be parsed as the kind of message indicated by its command_code field (for commands) or reply_code field (for replies).
- fields :
-
str_fields
()¶ Return the data as a list of string fields.
-