Navigation
API > API/Runtime > API/Runtime/IrisCore > API/Runtime/IrisCore/UReplicationSystem
Description
Registers a NetBlobHandler so that its NetBlob type can be sent and received. The user must be sure to keep the handler valid for the lifetime of the ReplicationSystem. The handler class must have been configured in UNetBlobHandlerDefinitions in order for the call to succeed. Only one instance per class is allowed to be registered.
| Name | RegisterNetBlobHandler |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/ReplicationSystem/ReplicationSystem.h |
| Include Path | #include "Iris/ReplicationSystem/ReplicationSystem.h" |
| Source | /Engine/Source/Runtime/Net/Iris/Private/Iris/ReplicationSystem/ReplicationSystem.cpp |
bool RegisterNetBlobHandler
(
UNetBlobHandler * Handler
)
Whether the handler was successfully registered or not.
Parameters
| Name | Remarks |
|---|---|
| Handler | The UNetBlobHandler to register. |