Class InProcessSampledSpanStoreImpl.UnregisterSpanNameEvent
- java.lang.Object
-
- io.opencensus.implcore.trace.export.InProcessSampledSpanStoreImpl.UnregisterSpanNameEvent
-
- All Implemented Interfaces:
EventQueue.Entry
- Enclosing class:
- InProcessSampledSpanStoreImpl
private static final class InProcessSampledSpanStoreImpl.UnregisterSpanNameEvent extends java.lang.Object implements EventQueue.Entry
-
-
Field Summary
Fields Modifier and Type Field Description private InProcessSampledSpanStoreImpl
sampledSpanStore
private java.util.Collection<java.lang.String>
spanNames
-
Constructor Summary
Constructors Modifier Constructor Description private
UnregisterSpanNameEvent(InProcessSampledSpanStoreImpl sampledSpanStore, java.util.Collection<java.lang.String> spanNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process()
Process the event associated with this entry.
-
-
-
Field Detail
-
sampledSpanStore
private final InProcessSampledSpanStoreImpl sampledSpanStore
-
spanNames
private final java.util.Collection<java.lang.String> spanNames
-
-
Constructor Detail
-
UnregisterSpanNameEvent
private UnregisterSpanNameEvent(InProcessSampledSpanStoreImpl sampledSpanStore, java.util.Collection<java.lang.String> spanNames)
-
-
Method Detail
-
process
public void process()
Description copied from interface:EventQueue.Entry
Process the event associated with this entry. This will be called for every event in the associatedEventQueue
.- Specified by:
process
in interfaceEventQueue.Entry
-
-