Class NoSubscriberEvent


  • public final class NoSubscriberEvent
    extends java.lang.Object
    This Event is posted by EventBus when no subscriber is found for a posted event.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      EventBus eventBus
      The EventBus instance to with the original event was posted to.
      java.lang.Object originalEvent
      The original event that could not be delivered to any subscriber.
    • Constructor Summary

      Constructors 
      Constructor Description
      NoSubscriberEvent​(EventBus eventBus, java.lang.Object originalEvent)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • eventBus

        public final EventBus eventBus
        The EventBus instance to with the original event was posted to.
      • originalEvent

        public final java.lang.Object originalEvent
        The original event that could not be delivered to any subscriber.
    • Constructor Detail

      • NoSubscriberEvent

        public NoSubscriberEvent​(EventBus eventBus,
                                 java.lang.Object originalEvent)