Navigation
API > API/Runtime > API/Runtime/IrisCore
| Name | EReplicationBridgeCreateNetRefHandleResultFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/Iris/Core/Public/Iris/ReplicationSystem/ReplicationBridgeTypes.h |
| Include Path | #include "Iris/ReplicationSystem/ReplicationBridgeTypes.h" |
Syntax
enum EReplicationBridgeCreateNetRefHandleResultFlags
{
None = 0U,
AllowDestroyInstanceFromRemote = 1U << 0U,
ShouldCallSubObjectCreatedFromReplication = AllowDestroyInstanceFromRemote << 1U,
}
Values
| Name | Remarks |
|---|---|
| None | |
| AllowDestroyInstanceFromRemote | Whether the instance may be destroyed due to the remote peer requesting the object to be destroyed. |
| ShouldCallSubObjectCreatedFromReplication | Set this flag if you created a subobject and want the RootObject to be notified of the subobject's creation. |