Navigation
API > API/Runtime > API/Runtime/IrisCore > API/Runtime/IrisCore/FRawDataNetBlob
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void SetRawData
(
TArray< uint32 >&& RawData, |
Set the raw data via moving an array. | Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h | |
void SetRawData
(
const TArrayView< const uint32 > RawData, |
Set the raw data. The data is copied. | Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h |
SetRawData(TArray< uint32 > &&, uint32)
Description
Set the raw data via moving an array.
| Name | SetRawData |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h |
| Include Path | #include "Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h" |
| Source | /Engine/Source/Runtime/Net/Iris/Private/Iris/ReplicationSystem/NetBlob/RawDataNetBlob.cpp |
void SetRawData
(
TArray < uint32 > && RawData,
uint32 RawDataBitCount
)
Parameters
| Name | Remarks |
|---|---|
| RawData | The array to be moved. |
| RawDataBitCount | The number of bits that should be serialized. If RawDataBitCount is not a multiple of 32 then the (RawDataBitCount % 32) least significant bits of the last uint32 are serialized. |
SetRawData(const TArrayView< const uint32 >, uint32)
Description
Set the raw data. The data is copied.
| Name | SetRawData |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h |
| Include Path | #include "Iris/ReplicationSystem/NetBlob/RawDataNetBlob.h" |
| Source | /Engine/Source/Runtime/Net/Iris/Private/Iris/ReplicationSystem/NetBlob/RawDataNetBlob.cpp |
void SetRawData
(
const TArrayView < const uint32 > RawData,
uint32 RawDataBitCount
)
Parameters
| Name | Remarks |
|---|---|
| RawData | The data to be copied. |
| RawDataBitCount | The number of bits that should be serialized. If RawDataBitCount is not a multiple of 32 then the (RawDataBitCount % 32) least significant bits of the last uint32 are serialized. |