Navigation
API > API/Runtime > API/Runtime/IrisCore
Flags that can be set at blob creation time.
| Name | UE::Net::ENetBlobFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/Iris/Core/Public/Iris/ReplicationSystem/NetBlob/NetBlob.h |
| Include Path | #include "Iris/ReplicationSystem/NetBlob/NetBlob.h" |
Syntax
namespace UE
{
namespace Net
{
enum ENetBlobFlags
{
None = 0,
Reliable = 1U << 0U,
RawDataNetBlob = Reliable << 1U,
HasExports = RawDataNetBlob << 1U,
Ordered = HasExports << 1U,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Reliable | The blob should be delivered reliably in order with respect to other reliable blobs. |
| RawDataNetBlob | Used for FRawDataNetBlob derived classes to avoid duplicate serialization when splitting large blob. |
| HasExports | Used to indicate that this blob have ObjectReferences that might have to be exported. |
| Ordered | The blob should respect delivery order with respect to other Ordered blobs, including Reliable ones. |