Enum ComponentUpdateType

Enum Documentation

enum class csp::multiplayer::ComponentUpdateType

This Enum should be used to determine what kind of operation the component update represents.

Update means properties on the component have updated, all need to be checked as we do not provide reference of specific property updates. Add means the component is newly added, clients should ensure that this triggers appropriate instantiation of wrapping objects. All properties for the component should be included. Delete means the component has been marked for deletion. It is likely that some other clients will not have the component at the point this is recieved. Any wrapping data objects should be deleted when this is recieved, and clients should cease updating this component as any call would fail. The CSP representation of the component has been removed at this point.

Values:

enumerator Update
enumerator Add
enumerator Delete