Navigation
API > API/Developer > API/Developer/Horde > API/Developer/Horde/Compute
Inheritance Hierarchy
- FComputeTransport
- FBufferTransport
References
| Module | Horde |
| Header | /Engine/Source/Developer/Horde/Public/Compute/ComputeTransport.h |
| Include | #include "Compute/ComputeTransport.h" |
Syntax
class FComputeTransport
Remarks
Interface for a transport mechanism that can be used by a compute socket
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Close () |
Indicates that no more data will be sent or received, and that any blocking reads/writes should stop. | |
| void | MarkComplete () |
Indicates to the remote that no more data will be sent. | |
| size_t | Recv
(
void* Data, |
Receives data from the remote. | |
| bool | RecvMessage
(
void* Data, |
Receives a fixed length block of data from the remote, blocking until the entire length has been received. | |
| size_t | Send
(
const void* Data, |
Sends data to the remote. | |
| bool | SendMessage
(
const void* Data, |
Sends data to the remote, blocking until the entire message has been sent. |