Posts events. @author William Ferguson
| 21 | * @author William Ferguson |
| 22 | */ |
| 23 | public interface Poster { |
| 24 | |
| 25 | /** |
| 26 | * Enqueue an event to be posted for a particular subscription. |
| 27 | * |
| 28 | * @param subscription Subscription which will receive the event. |
| 29 | * @param event Event that will be posted to subscribers. |
| 30 | */ |
| 31 | void enqueue(Subscription subscription, Object event); |
| 32 | } |
no outgoing calls
no test coverage detected