LoggingControlEnumOp class

Operation to perform.

Inheritance

Constructors

LoggingControlEnumOp(int value)
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toPrettyString() String
Output this as a pretty string. Override for propper text.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

names Map<LoggingControlEnumOp, String>
no setter
values List<LoggingControlEnumOp>
no setter

Constants

copCurrentName → const LoggingControlEnumOp
The logging manager will send a message with this operation when asked via the REQUEST_CURRENT_NAME operation. The field 'name' contains the complete name of the log.
copRequestCurrentName → const LoggingControlEnumOp
This operation instructs the logging manager to send a message with operation CURRENT_NAME containing the complete name of the current log in the field 'name'. The field 'name' with this operation type has no meaning.
copRequestStart → const LoggingControlEnumOp
Request the logging manager to start logging. The logging manager will reply with a STARTED operation. If logging is already in progress the current log will be closed and a new one will be opened (therefore the logging manager will send two messages - STOPPED and STARTED). The field 'name' represents the label that will be appended to the log path.
copRequestStop → const LoggingControlEnumOp
Request the logging manager to stop logging messages. The logging manager will reply with a STOPPED operation and logging will be suspended until a message with operation START is received. If logging is already stoppped the logging manager will ignore this operation and will not reply with a STOPPED operation. The field 'name' with this operation type has no meaning.
copStarted → const LoggingControlEnumOp
The logging manager will send a message with this operation everytime a log is successfully started. The field 'name' contains the complete name of the log.
copStopped → const LoggingControlEnumOp
The logging manager will send a message with this operation when logging is successfully stopped. The field 'name' contains the complete name of the log that was closed.