1 | <?php |
||
14 | class BasicNackFrame implements MethodFrame, IncomingFrame, OutgoingFrame |
||
15 | { |
||
16 | const METHOD_ID = 0x003c0078; |
||
17 | |||
18 | public $frameChannelId = 0; |
||
19 | public $deliveryTag = 0; // longlong |
||
20 | public $multiple = false; // bit |
||
21 | public $requeue = true; // bit |
||
22 | |||
23 | public static function create( |
||
41 | } |
||
42 |