Navigation
API > API/Runtime > API/Runtime/IrisCore
Copyright Epic Games, Inc. All Rights Reserved.
Definitions.
A FNetSerializer is needed for replication support of a certain type. Most types that can be marked as UPROPERTY are already supported. Types that aren't supported or need special support will emit warnings when descriptors are built for a UCLASS, USTRUCT or UFUNCTION. Find below how to implement one.
| Name | UE::Net::EDataStreamWriteMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/DataStream/DataStream.h |
| Include Path | #include "Iris/DataStream/DataStream.h" |
Syntax
namespace UE
{
namespace Net
{
enum EDataStreamWriteMode
{
Full,
PostTickDispatch,
}
}
}
Values
| Name | Remarks |
|---|---|
| Full | Allowed to write all data, this is the default WriteMode. |
| PostTickDispatch | Only write data that should be sent after PostTickDispatch. |