Navigation
API > API/Runtime > API/Runtime/Sockets > API/Runtime/Sockets/FMultichannelTcpSocket
Description
Send data out a given channel, this does not block on bandwidth, and never fails.
Can be called from any thread, but if you are calling from multiple threads, make sure you are sending an atomic unit.
| Name | Send |
| Type | function |
| Header File | /Engine/Source/Runtime/Sockets/Public/MultichannelTcpSocket.h |
| Include Path | #include "MultichannelTcpSocket.h" |
void Send
(
const uint8 * Data,
int32 Count,
uint32 Channel
)
Parameters
| Name | Remarks |
|---|---|
| Data | The buffer containing the data to send. |
| Count | The number of bytes to send. |
| Channel | The channel to send on. |