Navigation
API > API/Runtime > API/Runtime/IrisCore > API/Runtime/IrisCore/Iris > API/Runtime/IrisCore/Iris/ReplicationSystem
References
| Module | IrisCore |
| Header | /Engine/Source/Runtime/Experimental/Iris/Core/Public/Iris/ReplicationSystem/ReplicationBridgeTypes.h |
| Include | #include "Iris/ReplicationSystem/ReplicationBridgeTypes.h" |
Syntax
enum EEndReplicationFlags
{
None = 0U,
Destroy = 1U,
TearOff = Destroy << 1U,
Flush = TearOff << 1U,
DestroyNetHandle = Flush << 1U,
ClearNetPushId = DestroyNetHandle << 1U,
SkipPendingEndReplicationValidation = ClearNetPushId << 1U,
}
Values
| Name | Description |
|---|---|
| None | |
| Destroy | Destroy remote instance. Default for dynamic objects unless they have TearOff flag set. |
| TearOff | Stop replication object without destroying instance on the remote end. |
| Flush | Complete replication of pending state to all clients before ending replication. |
| DestroyNetHandle | Destroy NetHandle if one is associated with the replicated object. |
| ClearNetPushId | Clear net push ID to prevent this object and its subobjects from being marked as dirty in the networking system. |
| SkipPendingEndReplicationValidation | Skip bPendingEndReplication Validation, In some cases we want to allow detaching instance from replicated object on clients, such as when shutting down |