Method | Description | |
---|---|---|
ClientSendingMessages ( ) : System.Collections.Generic |
Constructs a message sending application.
|
|
Close ( ) : void |
Close the session.
|
|
Send ( string topicPath, string message, ISendCallback callback ) : void |
Sends a simple string message to a specified topic path. There will be no context with the message so callback will be directed to the 'no context' callback.
|
|
Send ( string topicPath, string message, string context, ISendContextCallback |
Sends a simple string message to a specified topic path with context string. The callback will be directed to the contextual callback with the string provided.
|
|
SendWithHeaders ( string topicPath, string message, List |
Sends a string message to a specified topic with headers. There will be no context with the message so callback will be directed to the 'no context' callback.
|
public ClientSendingMessages ( ) : System.Collections.Generic | ||
return | System.Collections.Generic |
public Send ( string topicPath, string message, ISendCallback callback ) : void | ||
topicPath | string | The topic path. |
message | string | The message to send. |
callback | ISendCallback | Notifies that the message was sent. |
return | void |
public Send ( string topicPath, string message, string context, ISendContextCallback |
||
topicPath | string | |
message | string | |
context | string | |
callback | ISendContextCallback |
|
return | void |
public SendWithHeaders ( string topicPath, string message, List |
||
topicPath | string | The topic path. |
message | string | The message to send. |
headers | List |
The headers to send with the message. |
callback | ISendCallback | Notifies that the message was sent. |
return | void |