This repository has been archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AMQPEnvelope.php
114 lines (97 loc) · 2.06 KB
/
AMQPEnvelope.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
/**
* Contains a message and all of its attributes.
*/
class AMQPEnvelope {
/**
* Get the message appid
* @return string
*/
public function getAppId() {}
/**
* Get the message body
* @return string
*/
public function getBody() {}
/**
* Get the message contentencoding
* @return string
*/
public function getContentEncoding() {}
/**
* Get the message contenttype
* @return string
*/
public function getContentType() {}
/**
* Get the message correlation id
* @return string
*/
public function getCorrelationId() {}
/**
* Get the message delivery tag
* @return string
*/
public function getDeliveryTag() {}
/**
* Get the message exchange
* @return string
*/
public function getExchange() {}
/**
* Get the message expiration
* @return string
*/
public function getExpiration() {}
/**
* Get a specific message header
* @param string $header_key
* @return string
*/
public function getHeader($header_key) {}
/**
* Get the message headers
* @return array
*/
public function getHeaders() {}
/**
* Get the message id
* @return string
*/
public function getMessageId() {}
/**
* Get the message priority
* @return string
*/
public function getPriority() {}
/**
* Get the message replyto
* @return string
*/
public function getReplyTo() {}
/**
* Get the message routing key
* @return string
*/
public function getRoutingKey() {}
/**
* Get the message timestamp
* @return string
*/
public function getTimeStamp() {}
/**
* Get the message type
* @return string
*/
public function getType() {}
/**
* Get the message user id
* @return string
*/
public function getUserId() {}
/**
* Whether this is a redelivery of the message
* @return bool
*/
public function isRedelivery () {}
}