private static class SettingsTransformer.FixCodeCacheSink extends java.lang.Object implements IEventSink
Modifier and Type | Field and Description |
---|---|
private IEventSink |
subSink |
private int |
unallocatedFieldIndex |
Constructor and Description |
---|
FixCodeCacheSink(int unallocatedFieldIndex,
IEventSink subSink) |
Modifier and Type | Method and Description |
---|---|
void |
addEvent(java.lang.Object[] values)
Add a new event to the sink for processing.
|
private int unallocatedFieldIndex
private IEventSink subSink
public FixCodeCacheSink(int unallocatedFieldIndex, IEventSink subSink)
public void addEvent(java.lang.Object[] values)
IEventSink
The implementation should have one or more subsinks created during the
IEventSinkFactory.create
call. Call addEvent on a subsink to continue the processing of the
event. Note that the passed on value array must match the data structure used by the subsink.
If no addEvent
call is made to a subsink, then the event will be effectively filtered
out.
addEvent
calls to subsinks may be delayed until later calls of this method or in an
implementation specific flush method that can be called by IEventSinkFactory.flush
.
addEvent
in interface IEventSink
values
- Event values. The order and data type of the values must match the
dataStructure
parameter to the
IEventSinkFactory.create
call.