- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getEvent (0.07 sec)
-
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:05:46 UTC 2021 - 2.2K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:05:46 UTC 2021 - 2.1K bytes - Viewed (0) -
src/packaging/common/scripts/preinst
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 01 09:48:15 UTC 2016 - 2.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/eventbus/StringCatcher.java
events.add(string); } public void methodWithoutAnnotation(@Nullable String string) { Assert.fail("Event bus must not call methods without @Subscribe!"); } public List<String> getEvents() { return events; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 16 22:49:59 UTC 2018 - 1.4K bytes - Viewed (0) -
src/packaging/common/scripts/postrm
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 2.2K bytes - Viewed (0)