MockProcessorContext
@Evolving public interface ProcessorContext
Modifier and Type | Method | Description |
---|---|---|
java.util.Map<java.lang.String,java.lang.Object> |
appConfigs() |
Returns all the application config properties as key/value pairs.
|
java.util.Map<java.lang.String,java.lang.Object> |
appConfigsWithPrefix(java.lang.String prefix) |
Returns all the application config properties with the given key prefix, as key/value pairs
stripping the prefix.
|
java.lang.String |
applicationId() |
Returns the application id
|
void |
commit() |
Requests a commit
|
<K,V> void |
forward(K key,
V value) |
Forwards a key/value pair to all downstream processors.
|
<K,V> void |
forward(K key,
V value,
int childIndex) |
Deprecated.
please use
forward(Object, Object, To) instead |
<K,V> void |
forward(K key,
V value,
java.lang.String childName) |
Deprecated.
please use
forward(Object, Object, To) instead |
<K,V> void |
forward(K key,
V value,
To to) |
Forwards a key/value pair to the specified downstream processors.
|
StateStore |
getStateStore(java.lang.String name) |
Get the state store given the store name.
|
Headers |
headers() |
Returns the headers of the current input record; could be null if it is not available
|
Serde<?> |
keySerde() |
Returns the default key serde
|
StreamsMetrics |
metrics() |
Returns Metrics instance
|
long |
offset() |
Returns the offset of the current input record; could be -1 if it is not
available (for example, if this method is invoked from the punctuate call)
|
int |
partition() |
Returns the partition id of the current input record; could be -1 if it is not
available (for example, if this method is invoked from the punctuate call)
|
void |
register(StateStore store,
StateRestoreCallback stateRestoreCallback) |
Registers and possibly restores the specified storage engine.
|
Cancellable |
schedule(long intervalMs,
PunctuationType type,
Punctuator callback) |
Schedules a periodic operation for processors.
|
java.io.File |
stateDir() |
Returns the state directory for the partition.
|
TaskId |
taskId() |
Returns the task id
|
long |
timestamp() |
Returns the current timestamp.
|
java.lang.String |
topic() |
Returns the topic name of the current input record; could be null if it is not
available (for example, if this method is invoked from the punctuate call)
|
Serde<?> |
valueSerde() |
Returns the default value serde
|
java.lang.String applicationId()
TaskId taskId()
Serde<?> keySerde()
Serde<?> valueSerde()
java.io.File stateDir()
StreamsMetrics metrics()
void register(StateStore store, StateRestoreCallback stateRestoreCallback)
store
- the storage enginestateRestoreCallback
- the restoration callback logic for log-backed state stores upon restartjava.lang.IllegalStateException
- If store gets registered after initialized is already finishedStreamsException
- if the store's change log does not contain the partitionStateStore getStateStore(java.lang.String name)
name
- The store nameCancellable schedule(long intervalMs, PunctuationType type, Punctuator callback)
initialization
or
processing
to
schedule a periodic callback - called a punctuation - to Punctuator.punctuate(long)
.
The type parameter controls what notion of time is used for punctuation:
PunctuationType.STREAM_TIME
- uses "stream time", which is advanced by the processing of messages
in accordance with the timestamp as extracted by the TimestampExtractor
in use.
The first punctuation will be triggered by the first record that is processed.
NOTE: Only advanced if messages arrivePunctuationType.WALL_CLOCK_TIME
- uses system time (the wall-clock time),
which is advanced at the polling interval (StreamsConfig.POLL_MS_CONFIG
)
independent of whether new messages arrive.
The first punctuation will be triggered after interval has elapsed.
NOTE: This is best effort only as its granularity is limited by how long an iteration of the
processing loop takes to completePunctuationType.STREAM_TIME
, when stream time advances more than intervalPunctuationType.WALL_CLOCK_TIME
, on GC pause, too short interval, ...intervalMs
- the time interval between punctuations in millisecondstype
- one of: PunctuationType.STREAM_TIME
, PunctuationType.WALL_CLOCK_TIME
callback
- a function consuming timestamps representing the current stream or system time<K,V> void forward(K key, V value)
key
- keyvalue
- value<K,V> void forward(K key, V value, To to)
key
- keyvalue
- valueto
- the options to use when forwarding@Deprecated <K,V> void forward(K key, V value, int childIndex)
forward(Object, Object, To)
insteadkey
- keyvalue
- valuechildIndex
- index in list of children of this node@Deprecated <K,V> void forward(K key, V value, java.lang.String childName)
forward(Object, Object, To)
insteadkey
- keyvalue
- valuechildName
- name of downstream processorvoid commit()
java.lang.String topic()
int partition()
long offset()
Headers headers()
long timestamp()
ConsumerRecord
by TimestampExtractor
.
If it is triggered while processing a record generated not from the source processor (for example,
if this method is invoked from the punctuate call), timestamp is defined as the current
task's stream time, which is defined as the smallest among all its input stream partition timestamps.java.util.Map<java.lang.String,java.lang.Object> appConfigs()
StreamsConfig
object and associated to the ProcessorContext.
The type of the values is dependent on the type
of the property
(e.g. the value of DEFAULT_KEY_SERDE_CLASS_CONFIG
will be of type Class
, even if it was specified as a String to
StreamsConfig(Map)
).
java.util.Map<java.lang.String,java.lang.Object> appConfigsWithPrefix(java.lang.String prefix)
StreamsConfig
object and associated to the ProcessorContext.prefix
- the properties prefix