public interface EventObserver<T>
EventGenerator
Created by
aagrawal on 8/11/17.Modifier and Type | Method and Description |
---|---|
void |
updateEventFailure(T event)
Notification of an event failure from the
EventGenerator |
void |
updateEventStart(T event)
Notification of an event start from the
EventGenerator |
void |
updateEventStop(T event)
Notification of an event stop from the
EventGenerator |
void |
updateEventSuccess(T event)
Notification of an event success from the
EventGenerator |
void updateEventStart(T event)
EventGenerator
event
- Event for which notification was sent.void updateEventFailure(T event)
EventGenerator
event
- Event for which notification was sent.void updateEventSuccess(T event)
EventGenerator
event
- Event for which notification was sent.void updateEventStop(T event)
EventGenerator
event
- Event for which notification was sent.