<?php
require_once 'Zend/Amf/Value/Messaging/AsyncMessage.php';
class Zend_Amf_Value_Messaging_CommandMessage extends Zend_Amf_Value_Messaging_AsyncMessage
{
const SUBSCRIBE_OPERATION = 0;
const UNSUSBSCRIBE_OPERATION = 1;
const POLL_OPERATION = 2;
const CLIENT_SYNC_OPERATION = 4;
const CLIENT_PING_OPERATION = 5;
const CLUSTER_REQUEST_OPERATION = 7;
/**
* This operation is used to send credentials to the endpoint so that
* the user can be logged in over the current channel.
* The credentials need to be Base64 encoded and stored in the <code>body</code>
* of the message.
* @const int
*/
const LOGIN_OPERATION = 8;
const LOGOUT_OPERATION = 9;
const SESSION_INVALIDATE_OPERATION = 10;
const MULTI_SUBSCRIBE_OPERATION = 11;
const DISCONNECT_OPERATION = 12;
const UNKNOWN_OPERATION = 10000;
public $operation = self::UNKNOWN_OPERATION;
}