DynamicReactors generate proxies based on user-defined interfaces and
do the dirty work of wiring event handlers and makes event publishing code more succinct.See: Description
| Interface | Description |
|---|---|
| DynamicReactor |
A DynamicReactor is an arbitrary interface that a proxy generator can use to wire calls to the interface
to appropriate
Reactor.on(reactor.event.selector.Selector, reactor.function.Consumer) and Reactor.notify(Object, reactor.event.Event) calls. |
| Class | Description |
|---|---|
| DynamicReactorFactory<T extends DynamicReactor> |
A DynamicReactorFactory is responsible for generating a
Proxy based on the given interface, that
intercepts calls to the interface and translates them into the appropriate Reactor.on(reactor.event.selector.Selector, reactor.function.Consumer) or Reactor.notify(Object, Event)
calls. |
DynamicReactors generate proxies based on user-defined interfaces and
do the dirty work of wiring event handlers and makes event publishing code more succinct.