enum RTTIOperationType

List of operations that may be performed on a RTTIType object, to be used with RTTITypeOnOperationStarted/Ended notifies.

Values

NameValueDescription
Unknown 0
FlagsStartBit 5 First bit at which operation types start.
ReadBit 32 Operation performs a read on the RTTI fields.
WriteBit 64 Operation performs a write on the RTTI fields.
PreExistingObjectBit 128 Set when performing writes on an existing object (i.e. object was not created by the RTTI operation itself).
Serialization 32 Serializing an object to a binary stream or some other format that may be deserialized later.
Deserialization 65 Deserializing a brand new object from a binary stream or some other format.
DeltaGenerate 34 Generating a delta between two objects.
DeltaRead 35 Decodes objects encoded in a delta to object instances.
DeltaApply 196 Some or all fields on a pre-existing object will be updated with new data.
Patch 197 Some or all fields on a pre-existing object will be updated with new data.
GatherReferences 38 Searching the RTTI fields for references to certain IReflectable object instances or types.