Task
is the abstraction of stream processor tasks.
Method | Description |
---|---|
|
String applicationId() Application ID of the Kafka Streams application the task belongs to |
|
Collection<TopicPartition> changelogPartitions() Changelog partitions associated with the task Used when:
|
|
void close(
boolean clean,
boolean isZombie) Closes the task Used when:
|
|
void closeSuspended(
boolean clean,
boolean isZombie,
RuntimeException e) Used when:
|
|
void commit() Commits the task Used when:
|
|
boolean commitNeeded() Used when:
|
|
ProcessorContext context() ProcessorContext of the task |
|
StateStore getStore(String name) Looks up the state store by name Used exclusively when |
|
boolean hasStateStores() |
|
TaskId id() TaskId of the task |
|
boolean initializeStateStores() Initializes state stores (of the ProcessorTopology) Enabled (
Used exclusively when |
|
void initializeTopology() Initializes the topology of processor nodes Used exclusively when |
|
Set<TopicPartition> partitions() Used when:
|
|
void resume() Resumes the task Used exclusively when |
|
|
|
ProcessorTopology topology() ProcessorTopology of the task |
|
String toString(String indent) Describes the task (textual representation) |
Note
|
AbstractTask is the base implementation of the Task Contract in Kafka Streams (with StandbyTask and StreamTask as the only concrete implementations). |