Class ClusterSessionListener

  • All Implemented Interfaces:
    ChannelListener

    public class ClusterSessionListener
    extends ClusterListener
    Receive replicated SessionMessage form other cluster node.
    Author:
    Peter Rossbach
    • Constructor Detail

      • ClusterSessionListener

        public ClusterSessionListener()
    • Method Detail

      • messageReceived

        public void messageReceived​(ClusterMessage myobj)
        Description copied from class: ClusterListener
        Callback from the cluster, when a message is received, The cluster will broadcast it invoking the messageReceived on the receiver.
        Specified by:
        messageReceived in class ClusterListener
        Parameters:
        myobj - the message received from the cluster
      • accept

        public boolean accept​(ClusterMessage msg)
        Accept only a certain type of messages.

        This listener accepts only SessionMessage.

        Specified by:
        accept in class ClusterListener
        Parameters:
        msg - the message
        Returns:
        true to indicate that messageReceived should be invoked. If false is returned, the messageReceived method will not be invoked.