public interface EventSignal
Ultimately, the event-driven simulation is searching for event times. Though specific event types correspond to specific signal types (for example,
change events are detected by observing BooleanSignals), in the end all event sources are resolved to EventSignals.
The only relevant information in this signal is the moments in time when the events occur.
| Modifier and Type | Method and Description |
|---|---|
Stream<MoxieTime> |
getEventsWithin(Interval<MoxieTime> interval)
Reports the events that occur within the interval.
|
@NotNull Stream<MoxieTime> getEventsWithin(@NotNull Interval<MoxieTime> interval)
interval - The interval over which events should be reported.