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 FBufferTransport : public FComputeTransport
Remarks
Implementation of FComputeTransport which uses in-memory buffers to transport data
Constructors
| Type | Name | Description | |
|---|---|---|---|
FBufferTransport
(
FComputeBufferWriter InSendBufferWriter, |
Overridden from FComputeTransport
| 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. | |
| size_t | Send
(
const void* Data, |
Sends data to the remote. |