Class AntPluginMsgDefines.DeviceStateCodes

java.lang.Object
com.dsi.ant.plugins.internal.pluginsipc.AntPluginMsgDefines.DeviceStateCodes
Enclosing class:
AntPluginMsgDefines

public class AntPluginMsgDefines.DeviceStateCodes extends Object
Defines the possible states of a device.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The device is not connected and not trying to connect but will still respond to commands.
    static final int
    The device is no longer usable and will not respond to commands.
    static final int
    The plugin is currently processing a command request from a client.
    static final int
    The device is attempting to establish a connection.
    static final int
    The device has an open connection, and can receive and transmit data.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • DEAD

      public static final int DEAD
      The device is no longer usable and will not respond to commands.
      See Also:
    • CLOSED

      public static final int CLOSED
      The device is not connected and not trying to connect but will still respond to commands.
      See Also:
    • SEARCHING

      public static final int SEARCHING
      The device is attempting to establish a connection.
      See Also:
    • TRACKING

      public static final int TRACKING
      The device has an open connection, and can receive and transmit data.
      See Also:
    • PROCESSING_REQUEST

      public static final int PROCESSING_REQUEST
      The plugin is currently processing a command request from a client.
      See Also:
  • Constructor Details

    • DeviceStateCodes

      public DeviceStateCodes()