Interface EngineMessageBroadcaster


public interface EngineMessageBroadcaster
This interface describes an object that should receive a message listener to attach itself to in order to pass messages along to the active EngineMessageListeners.

You cannot guarantee the order in which these objects have their methods called on them.

Author:
Matthew Tropiano
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called by Engine in order to pass along the message receiver that is used to broadcast messages to listening components in the engine.
  • Method Details

    • addMessageReceiver

      void addMessageReceiver(EngineMessageReceiver receiver)
      Called by Engine in order to pass along the message receiver that is used to broadcast messages to listening components in the engine.
      Parameters:
      receiver - the receiver to use.