pub type ClientListenerMessage = Message<ClientStateUpdatesProxy, ClientStateUpdate>;

Aliased Type§

enum ClientListenerMessage {
    NewListener(ClientStateUpdatesProxy),
    NotifyListeners(ClientStateUpdate),
}

Variants§

§

NewListener(ClientStateUpdatesProxy)

Sent if a new listener wants to register itself for future updates.

§

NotifyListeners(ClientStateUpdate)

Sent if an entity wants to notify all listeners about a state change.