Navigation
API > API/Runtime > API/Runtime/Stomp > API/Runtime/Stomp/IStompClient
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void Send
(
const FString& Destination, |
IStompClient.h | ||
virtual void Send
(
const FString& Destination, |
IStompClient.h | ||
virtual void Send
(
const FString& Destination, |
Emit an event to a destination | IStompClient.h | |
void Send
(
const FString& Destination, |
Emit an event to a destination | IStompClient.h |
Send(const FString &, const FString &, const FStompRequestCompleted &)
| Name | Send |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Stomp/Public/IStompClient.h |
| Include Path | #include "IStompClient.h" |
virtual void Send
(
const FString & Destination,
const FString & Body,
const FStompRequestCompleted & CompletionCallback
)
Send(const FString &, const FStompBuffer &, const FStompRequestCompleted &)
| Name | Send |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Stomp/Public/IStompClient.h |
| Include Path | #include "IStompClient.h" |
virtual void Send
(
const FString & Destination,
const FStompBuffer & Body,
const FStompRequestCompleted & CompletionCallback
)
Send(const FString &, const FString &, const FStompHeader &, const FStompRequestCompleted &)
Description
Emit an event to a destination
| Name | Send |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Stomp/Public/IStompClient.h |
| Include Path | #include "IStompClient.h" |
virtual void Send
(
const FString & Destination,
const FString & Body,
const FStompHeader & Header,
const FStompRequestCompleted & CompletionCallback
)
Parameters
| Name | Remarks |
|---|---|
| Destination | The destination endoint of the event. |
| Body | The event body as string. It will be encoded as UTF8 before sending to the Stomp server. |
| Header | Custom header values to send along with the data. |
| CompletionCallback | Delegate called when the request has been acknowledged by the server or if there is an error. |
Send(const FString &, const FStompBuffer &, const FStompHeader &, const FStompRequestCompleted &)
Description
Emit an event to a destination
| Name | Send |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Stomp/Public/IStompClient.h |
| Include Path | #include "IStompClient.h" |
void Send
(
const FString & Destination,
const FStompBuffer & Body,
const FStompHeader & Header,
const FStompRequestCompleted & CompletionCallback
)
Parameters
| Name | Remarks |
|---|---|
| Destination | The destination endoint of the event. |
| Body | The event body as a binary blob. |
| Header | Custom header values to send along with the data. |
| CompletionCallback | Delegate called when the request has been acknowledged by the server or if there is an error. |