Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/Serialization
Inheritance Hierarchy
- FArchiveState
- FArchive
- FBulkDataWriter
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/Serialization/BulkDataWriter.h |
| Include | #include "Serialization/BulkDataWriter.h" |
Syntax
class FBulkDataWriter : public FArchive
Remarks
Custom archive class for writing directly to bulk data.
Variables
| Type | Name | Description | |
|---|---|---|---|
| void * | Buffer | ||
| FByteBulkData & | BulkData | ||
| int64 | WriterPos | ||
| int64 | WriterSize |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FBulkDataWriter
(
FByteBulkData& InBulkData, |
Destructors
| Type | Name | Description | |
|---|---|---|---|
Overridden from FArchive
| Type | Name | Description | |
|---|---|---|---|
| void | Seek
(
int64 InPos |
Attempts to set the current offset into backing data storage, this will do nothing if there is no storage. | |
| void | Serialize
(
void* Data, |
Overridden from FArchiveState
| Type | Name | Description | |
|---|---|---|---|
| bool | AtEnd () |
Returns true if the current location within the backing data storage is at the end, always returns false if there is no storage. | |
| FString | Returns the name of the Archive. | ||
| int64 | Tell () |
Returns the current location within the backing data storage, which can possibly be passed to Seek later to restore a read/write location. | |
| int64 | TotalSize () |
Returns total size of the backing data storage. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| FArchive & | operator<<
(
FName& Value |
Serializes an FName value from or into this archive. |