body * of the message. * @const int */ const LOGIN_OPERATION = 8; /** * This operation is used to log the user out of the current channel, and * will invalidate the server session if the channel is HTTP based. * @const int */ const LOGOUT_OPERATION = 9; /** * This operation is used to indicate that the client's subscription to a * remote destination has been invalidated. * @const int */ const SESSION_INVALIDATE_OPERATION = 10; /** * This operation is used by the MultiTopicConsumer to subscribe/unsubscribe * from multiple subtopics/selectors in the same message. * @const int */ const MULTI_SUBSCRIBE_OPERATION = 11; /** * This operation is used to indicate that a channel has disconnected * @const int */ const DISCONNECT_OPERATION = 12; /** * This is the default operation for new CommandMessage instances. * @const int */ const UNKNOWN_OPERATION = 10000; /** * The operation to execute for messages of this type * @var int */ public $operation = self::UNKNOWN_OPERATION; }