Navigation
API > API/Runtime > API/Runtime/IrisCore
| Name | ECreateDataStreamResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/Iris/Core/Public/Iris/DataStream/DataStreamManager.h |
| Include Path | #include "Iris/DataStream/DataStreamManager.h" |
Syntax
enum ECreateDataStreamResult
{
Success,
Error_Duplicate,
Error_MissingDefinition,
Error_InvalidDefinition,
Error_TooManyStreams,
}
Values
| Name | Remarks |
|---|---|
| Success | DataStream was successfully created. |
| Error_Duplicate | A DataStream with that name is already created. |
| Error_MissingDefinition | There's no DataStreamDefinition for the requested DataStream. |
| Error_InvalidDefinition | There's something wrong with the DataStreamDefinition for the requested DataStream. |
| Error_TooManyStreams | There's a fixed limit on how many unique data streams can be created. |