Package io.opencensus.implcore.internal
Interface EventQueue
-
- All Known Implementing Classes:
DisruptorEventQueue
,SimpleEventQueue
public interface EventQueue
A queue that processes events. SeeDisruptorEventQueue
for an example.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
EventQueue.Entry
Base interface to be used for all entries inEventQueue
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
enqueue(EventQueue.Entry entry)
void
shutdown()
-
-
-
Method Detail
-
enqueue
void enqueue(EventQueue.Entry entry)
-
shutdown
void shutdown()
-
-