Class SchedulerAction
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.scheduler.SchedulerAction
-
public class SchedulerAction extends Enum
Represents a scheduler action to execute when a protocol is operating in asynchronous mode. For general information about the asynchronous mode, please refer to Protocol.IsValidOption This class is fully threadsafe.
-
-
Field Summary
Fields Modifier and Type Field Description static SchedulerActionConnectRepresents a connect protocol operation.static SchedulerActionDisconnectRepresents a disconnect protocol operation.static SchedulerActionDispatchRepresents a dispatch protocol operation.static SchedulerActionWritePacketRepresents a write protocol operation.
-
-
-
Field Detail
-
Connect
public static SchedulerAction Connect
Represents a connect protocol operation. This action is enqueued when the Protocol.connect() method is called and the protocol is operating in asynchronous mode.
-
WritePacket
public static SchedulerAction WritePacket
Represents a write protocol operation. This action is enqueued when the Protocol.writePacket method is called and the protocol is operating in asynchronous mode.
-
Disconnect
public static SchedulerAction Disconnect
Represents a disconnect protocol operation. This action is enqueued when the Protocol.disconnect() method is called and the protocol is operating in asynchronous mode.
-
Dispatch
public static SchedulerAction Dispatch
Represents a dispatch protocol operation. This action is enqueued when the Protocol.dispatch() method is called and the protocol is operating in asynchronous mode.
-
-