Class | Description |
---|---|
EventBus |
A simple in-process event bus.
|
EventBus.AnimatedEvent |
An event that represents an animated state change, which allows subscribers to coordinate
callbacks which happen after the animation has taken place.
|
EventBus.Event |
An event super class that allows us to track internal event state across subscriber
invocations.
|
EventBus.InterprocessEvent |
An inter-process event super class that allows us to track user state across subscriber
invocations.
|
EventBus.ReusableEvent |
An event that can be reusable, only used for situations where we want to reduce memory
allocations when events are sent frequently (ie. on scroll).
|