Package | com.kaazing.gateway.amqp.client |
Class | public class AmqpArguments |
Property | Defined by | ||
---|---|---|---|
entryArray : Array
Table of entries where each entry has a "key", "type" and
a "value".
| AmqpArguments |
Method | Defined by | ||
---|---|---|---|
Create a new AmqpArguments instance
| AmqpArguments | ||
addInteger(key:String, value:int):AmqpArguments
Adds an integer entry to an AmqpArguments table.
| AmqpArguments | ||
addLongString(key:String, value:*):AmqpArguments
Adds a long string entry to an AmqpArguments table.
| AmqpArguments | ||
getEntries(key:String):Array
The function Returns a array of entries that matches the specified key.
| AmqpArguments | ||
toString():String
| AmqpArguments |
entryArray | property |
public var entryArray:Array
Table of entries where each entry has a "key", "type" and a "value".
AmqpArguments | () | constructor |
public function AmqpArguments()
Create a new AmqpArguments instance
addInteger | () | method |
public function addInteger(key:String, value:int):AmqpArguments
Adds an integer entry to an AmqpArguments table.
Parameterskey:String — key entry key
|
|
value:int — value entry value
|
AmqpArguments |
addLongString | () | method |
public function addLongString(key:String, value:*):AmqpArguments
Adds a long string entry to an AmqpArguments table.
Parameterskey:String — key entry key
|
|
value:* — value entry value
The value type is so that you can receive null type of message.
|
AmqpArguments |
getEntries | () | method |
public function getEntries(key:String):Array
The function Returns a array of entries that matches the specified key. If a null or empty key is passed in, then a null is returned.
Parameterskey:String — name of the entry
|
Array |
toString | () | method |
public function toString():String
Returns
String |