| |
- runtimepy.primitives.serializable.base.Serializable(abc.ABC)
-
- FixedChunk
class FixedChunk(runtimepy.primitives.serializable.base.Serializable) |
|
FixedChunk(data: bytes, chain: runtimepy.primitives.serializable.base.Serializable = None) -> None
A simple fixed-size serializable chunk. |
|
- Method resolution order:
- FixedChunk
- runtimepy.primitives.serializable.base.Serializable
- abc.ABC
- builtins.object
Methods defined here:
- __bytes__(self) -> bytes
- Get this serializable as a bytes instance.
- __init__(self, data: bytes, chain: runtimepy.primitives.serializable.base.Serializable = None) -> None
- Initialize this instance.
- __str__(self) -> str
- Get this chunk as a string.
- update(self, data: bytes) -> int
- Update this serializable from a bytes instance.
Data and other attributes defined here:
- __abstractmethods__ = frozenset()
- __annotations__ = {}
Methods inherited from runtimepy.primitives.serializable.base.Serializable:
- __copy__(self: ~T) -> ~T
- Make a copy of this serializable.
- add_to_end(self, chain: ~T, array_length: int = None) -> int
- Add a new serializable to the end of this chain.
- assign(self, chain: ~T) -> int
- Assign a next serializable.
- copy(self: ~T) -> ~T
- Create a copy of a serializable instance.
- copy_without_chain(self: ~T) -> ~T
- A method for copying instances without chain references.
- from_stream(self, stream: <class 'BinaryIO'>) -> int
- Update this serializable from a stream.
- length(self) -> int
- Get the full length of this chain.
- length_trace(self) -> str
- Get a length-tracing string for this instance.
- to_stream(self, stream: <class 'BinaryIO'>) -> int
- Write this serializable to a stream.
- update_str(self, data: str) -> int
- Update this serializable from string data.
Readonly properties inherited from runtimepy.primitives.serializable.base.Serializable:
- end
- Get the end of this chain.
Data descriptors inherited from runtimepy.primitives.serializable.base.Serializable:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
| |