Class 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 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.