Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetKevent (0.05 sec)

  1. android/guava/src/com/google/common/eventbus/SubscriberExceptionContext.java

       *     a new event based on the error.
       */
      public EventBus getEventBus() {
        return eventBus;
      }
    
      /**
       * @return The event object that caused the subscriber to throw.
       */
      public Object getEvent() {
        return event;
      }
    
      /**
       * @return The object context that the subscriber was called on.
       */
      public Object getSubscriber() {
        return subscriber;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/eventbus/DeadEvent.java

      }
    
      /**
       * Returns the wrapped, 'dead' event, which the system was unable to deliver to any registered
       * subscriber.
       *
       * @return the 'dead' event that could not be delivered.
       */
      public Object getEvent() {
        return event;
      }
    
      @Override
      public String toString() {
        return MoreObjects.toStringHelper(this).add("source", source).add("event", event).toString();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top