Package io.opencensus.implcore.internal
Interface EventQueue.Entry
-
- All Known Implementing Classes:
InProcessSampledSpanStoreImpl.RegisterSpanNameEvent
,InProcessSampledSpanStoreImpl.UnregisterSpanNameEvent
,StartEndHandlerImpl.SpanEndEvent
,StartEndHandlerImpl.SpanStartEvent
,StatsManager.StatsEvent
- Enclosing interface:
- EventQueue
public static interface EventQueue.Entry
Base interface to be used for all entries inEventQueue
. For example usage, seeDisruptorEventQueue
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
process()
Process the event associated with this entry.
-
-
-
Method Detail
-
process
void process()
Process the event associated with this entry. This will be called for every event in the associatedEventQueue
.
-
-