@colyseus/schema
Version:
Binary state serializer with delta encoding for games
39 lines (32 loc) • 1.07 kB
text/typescript
export const $track = "~track";
export const $encoder = "~encoder";
export const $decoder = "~decoder";
export const $filter = "~filter";
export const $getByIndex = "~getByIndex";
export const $deleteByIndex = "~deleteByIndex";
/**
* Used to hold ChangeTree instances whitin the structures
*/
export const $changes = '~changes';
/**
* Used to keep track of the type of the child elements of a collection
* (MapSchema, ArraySchema, etc.)
*/
export const $childType = '~childType';
/**
* Optional "discard" method for custom types (ArraySchema)
* (Discards changes for next serialization)
*/
export const $onEncodeEnd = '~onEncodeEnd';
/**
* When decoding, this method is called after the instance is fully decoded
*/
export const $onDecodeEnd = "~onDecodeEnd";
/**
* Metadata
*/
export const $descriptors = "~descriptors";
export const $numFields = "~__numFields";
export const $refTypeFieldIndexes = "~__refTypeFieldIndexes";
export const $viewFieldIndexes = "~__viewFieldIndexes";
export const $fieldIndexesByViewTag = "$__fieldIndexesByViewTag";