Navigation
API > API/Runtime > API/Runtime/NetworkReplayStreaming
Below are all available new style delegate declarations for the INetworkReplayStreamer interface.
All delegates should be named in the form F
All result types should be named in the form F
FGotoCallback and FGotoResult are used for GotoCheckpointIndex and GotoTimeInMS, as they perform logically similar operations. EnumerateRecentStreams uses the same delegate and result types as EnumerateStreams. Possible results for replay commands.
| Name | EStreamingOperationResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/NetworkReplayStreaming/NetworkReplayStreaming/Public/NetworkReplayStreaming.h |
| Include Path | #include "NetworkReplayStreaming.h" |
Syntax
enum EStreamingOperationResult
{
Success,
Unsupported,
ReplayNotFound,
ReplayCorrupt,
NotEnoughSpace,
NotEnoughSlots,
Unspecified,
UnfinishedTask,
EventNotFound,
DecryptFailure,
}
Values
| Name | Remarks |
|---|---|
| Success | |
| Unsupported | The operation succeeded. |
| ReplayNotFound | The operation is not supported by the current streamer. |
| ReplayCorrupt | The requested replay was not found. |
| NotEnoughSpace | The requested replay was found but was corrupt. |
| NotEnoughSlots | The operation failed due to insufficient storage space. |
| Unspecified | The operation failed due to reaching a predefined replay limit. |
| UnfinishedTask | The operation failed for unspecified reasons. |
| EventNotFound | The operation failed due to an outstanding task. |
| DecryptFailure | The operation failed because the event could not be found. |