Package org.onosproject.event
Interface EventDispatcher
-
- All Known Subinterfaces:
EventDeliveryService
public interface EventDispatcher
Abstraction of a mechanism capable of accepting and dispatching events to appropriate event sinks. Where the event sinks are obtained is unspecified. Similarly, whether the events are accepted and dispatched synchronously or asynchronously is unspecified as well.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
post(Event event)
Posts the specified event for dispatching.
-
-
-
Method Detail
-
post
void post(Event event)
Posts the specified event for dispatching.- Parameters:
event
- event to be posted
-
-