Class nw_connection_group_state_t


  • public final class nw_connection_group_state_t
    extends java.lang.Object
    [@typedef] nw_connection_group_state_t Connection Group states sent by nw_connection_group_set_state_changed_handler. States progress forward and do not move backwards.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int nw_connection_group_state_cancelled
      [@const] nw_connection_group_state_cancelled The connection group has been cancelled by the user.
      static int nw_connection_group_state_failed
      [@const] nw_connection_group_state_failed The connection group has irrecoverably failed.
      static int nw_connection_group_state_invalid
      [@const] nw_connection_group_state_invalid The state of the connection group is not valid.
      static int nw_connection_group_state_ready
      [@const] nw_connection_group_state_ready The connection group is ready and able to receive and process incoming messages.
      static int nw_connection_group_state_waiting
      [@const] nw_connection_group_state_waiting The connection group is waiting for a usable network before being able to receive and process incoming messages.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • nw_connection_group_state_invalid

        public static final int nw_connection_group_state_invalid
        [@const] nw_connection_group_state_invalid The state of the connection group is not valid. This state will never be delivered in the connection group's state update handler and can be treated as an unexpected value.
        See Also:
        Constant Field Values
      • nw_connection_group_state_waiting

        public static final int nw_connection_group_state_waiting
        [@const] nw_connection_group_state_waiting The connection group is waiting for a usable network before being able to receive and process incoming messages.
        See Also:
        Constant Field Values
      • nw_connection_group_state_ready

        public static final int nw_connection_group_state_ready
        [@const] nw_connection_group_state_ready The connection group is ready and able to receive and process incoming messages.
        See Also:
        Constant Field Values
      • nw_connection_group_state_failed

        public static final int nw_connection_group_state_failed
        [@const] nw_connection_group_state_failed The connection group has irrecoverably failed. You should cancel the connection group and create a new connection group object if you wish to continue processing incoming messages.
        See Also:
        Constant Field Values
      • nw_connection_group_state_cancelled

        public static final int nw_connection_group_state_cancelled
        [@const] nw_connection_group_state_cancelled The connection group has been cancelled by the user. You should create a new connection group object if you wish to continue processing incoming messages.
        See Also:
        Constant Field Values