Method | Description | |
---|---|---|
Send ( Amqp.Message message, OutcomeCallback callback, object state ) : void |
Sends a message asynchronously. If callback is null, the message is sent without requesting for an acknowledgement (best effort).
|
|
Send ( Amqp.Message message, int millisecondsTimeout = 60000 ) : void |
Sends a message and synchronously waits for an acknowledgement.
|
|
SenderLink ( |
Initializes a sender link.
|
|
SenderLink ( |
Initializes a sender link.
|
|
SenderLink ( |
Initializes a sender link.
|
Method | Description | |
---|---|---|
OnAbort ( Error error ) : void |
Aborts the sender link.
|
|
OnClose ( Error error ) : bool |
Closes the sender link.
|
Method | Description | |
---|---|---|
OnDeliveryStateChanged ( Amqp.Delivery delivery ) : void | ||
OnFlow ( Amqp.Framing.Flow flow ) : void | ||
OnTransfer ( Amqp.Delivery delivery, Amqp.Framing.Transfer transfer, ByteBuffer buffer ) : void | ||
Send ( Amqp.Message message, Amqp.Framing.DeliveryState deliveryState, OutcomeCallback callback, object state ) : void | ||
WriteDelivery ( Amqp.Delivery delivery ) : void |
protected OnAbort ( Error error ) : void | ||
error | Error | The error for the abort. |
return | void |
protected OnClose ( Error error ) : bool | ||
error | Error | The error for the closure. |
return | bool |
public Send ( Amqp.Message message, OutcomeCallback callback, object state ) : void | ||
message | Amqp.Message | The message to send. |
callback | OutcomeCallback | The callback to invoke when acknowledgement is received. |
state | object | The object that is passed back to the outcome callback. |
return | void |
public Send ( Amqp.Message message, int millisecondsTimeout = 60000 ) : void | ||
message | Amqp.Message | The message to send. |
millisecondsTimeout | int | The time in milliseconds to wait for the acknowledgement. |
return | void |
public SenderLink ( |
||
session | The session within which to create the link. | |
name | string | The link name. |
attach | Amqp.Framing.Attach | The attach frame to send for this link. |
onAttached | OnAttached | The callback to invoke when an attach is received from peer. |
return | System |
public SenderLink ( |
||
session | The session within which to create the link. | |
name | string | The link name. |
target | Amqp.Framing.Target | The target on attach that specifies the message target. |
onAttached | OnAttached | The callback to invoke when an attach is received from peer. |
return | System |
public SenderLink ( |
||
session | The session within which to create the link. | |
name | string | The link name. |
address | string | The node address. |
return | System |