Skip to content

MemoryAccessor

The MemoryAccessor class provides low-level access to schema-based memory properties.


Methods

IsExist()boolean

Checks whether the underlying object still exists.

Returned:

  • boolean - True if the condition is met, false otherwise.

ExistCheck()void

Throws if the underlying object no longer exists.


GetPointer()DataView

Retrieves the underlying memory pointer.

Returned:

  • DataView - The result of the call.

GetProperty<T>(className: string, fieldPath: string)T

Retrieves a schema property value from the specified class and field path.

  • classNamestring - The class name to check or query.
  • fieldPathstring - The schema field path.

Returned:

  • T - The result of the call.