Navigation
API > API/Runtime > API/Runtime/IrisCore > API/Runtime/IrisCore/UDataStream
| |
|
| Name |
EDataStreamState |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Net/Iris/Public/Iris/DataStream/DataStream.h |
| Include Path |
#include "Iris/DataStream/DataStream.h" |
Syntax
enum EDataStreamState
{
Invalid = 0,
PendingCreate,
WaitOnCreateConfirmation,
Open,
PendingClose,
WaitOnCloseConfirmation,
Count,
}
Values
| Name |
Remarks |
| Invalid |
Stream is invalid. |
| PendingCreate |
We should send open/init to other side. |
| WaitOnCreateConfirmation |
We are waiting for confirmation that remote have accepted the stream. |
| Open |
Stream is open and we will process incoming data. |
| PendingClose |
We are closing, but still considerd open until flushed. |
| WaitOnCloseConfirmation |
We have send a close request and is waiting for confirmation before invalidating stream. |
| Count |
|