Interface IKickEventListener


  • public interface IKickEventListener
    Listener can implement this interface to be notified on kicks.

    This interface is a replacement for the deprecated kicks in INotificationListener. This leads to a more stable implementation, because for new kicks no new method has been implemented.

    Listeners are called from a background thread which expects to get control back quickly. If a listener is going to perform a potentially time-consuming operation like processing a large document or doing something that may block, such as performing socket IO, it should arrange to do that work in another thread so it can return to its caller quickly.

    • Method Detail

      • kickPerformed

        void kickPerformed​(KickEvent e)
        This method is called, when a kick event is performed.
        Parameters:
        e - performed KickEvent