Navigation
API > API/Plugins > API/Plugins/RigLogicLib
Adapter that allows using an FArchive instance as a rl4::BoundedIOStream
| Name | FArchiveMemoryStream |
| Type | class |
| Header File | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Public/ArchiveMemoryStream.h |
| Include Path | #include "ArchiveMemoryStream.h" |
Syntax
class FArchiveMemoryStream : public trio::BoundedIOStream
Inheritance Hierarchy
- Bounded → BoundedIOStream → FArchiveMemoryStream
- Openable → Controllable → BoundedIOStream → FArchiveMemoryStream
- Closeable → Controllable → BoundedIOStream → FArchiveMemoryStream
- Readable → BoundedIOStream → FArchiveMemoryStream
- Writable → BoundedIOStream → FArchiveMemoryStream
- Seekable → BoundedIOStream → FArchiveMemoryStream
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FArchiveMemoryStream
(
FArchive* Archive |
ArchiveMemoryStream.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Archive | FArchive * | ArchiveMemoryStream.h | ||
| Origin | int64 | ArchiveMemoryStream.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
size_t read
(
char* ReadToBuffer, |
ArchiveMemoryStream.h | ||
size_t read
(
Writable* Destination, |
ArchiveMemoryStream.h | ||
size_t write
(
const char* WriteFromBuffer, |
ArchiveMemoryStream.h | ||
size_t write
(
Readable* Source, |
ArchiveMemoryStream.h |
Public Virtual
Overridden from Openable
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void open() |
Open access to the stream. | ArchiveMemoryStream.h |
Overridden from Closeable
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void close() |
Close access to the stream. | ArchiveMemoryStream.h |
Overridden from Seekable
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void seek
(
std::uint64_t position |
Set the current position in the stream. | ArchiveMemoryStream.h | |
virtual std::uint64_t tell() |
Get the current position in the stream. | ArchiveMemoryStream.h |
Overridden from Bounded
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual std::uint64_t size() |
Obtain size of stream in bytes. | ArchiveMemoryStream.h |