Navigation
API > API/Developer > API/Developer/Horde
Type of a compute message.
| Name | EAgentMessageType |
| Type | enum |
| Header File | /Engine/Source/Developer/Horde/Public/Compute/AgentMessage.h |
| Include Path | #include "Compute/AgentMessage.h" |
Syntax
enum EAgentMessageType
{
None = 0x00,
Ping = 0x01,
Exception = 0x02,
Fork = 0x03,
Attach = 0x04,
WriteFiles = 0x10,
WriteFilesResponse = 0x11,
DeleteFiles = 0x12,
ExecuteV1 = 0x16,
ExecuteV2 = 0x22,
ExecuteOutput = 0x17,
ExecuteResult = 0x18,
ReadBlob = 0x20,
ReadBlobResponse = 0x21,
XorRequest = 0xf0,
XorResponse = 0xf1,
}
Values
| Name | Remarks |
|---|---|
| None | No message was received (end of stream) |
| Ping | No-op message sent to keep the connection alive. Remote should reply with the same message. |
| Exception | Sent in place of a regular response if an error occurs on the remote. |
| Fork | Fork the message loop into a new channel. |
| Attach | Sent as the first message on a channel to notify the remote that the remote end is attached. |
| WriteFiles | Extract files on the remote machine (Initiator -> Remote) |
| WriteFilesResponse | Notification that files have been extracted (Remote -> Initiator) |
| DeleteFiles | Deletes files on the remote machine (Initiator -> Remote) |
| ExecuteV1 | Execute a process in a sandbox (Initiator -> Remote) |
| ExecuteV2 | Execute a process in a sandbox (Initiator -> Remote) |
| ExecuteOutput | Returns output from the child process to the caller (Remote -> Initiator) |
| ExecuteResult | Returns the process exit code (Remote -> Initiator) |
| ReadBlob | Reads a blob from storage. |
| ReadBlobResponse | Response to a ReadBlob request. |
| XorRequest | Xor a block of data with a value. |
| XorResponse | Result from an XorRequest request. |