Class ThreadMetadata
- java.lang.Object
-
- org.apache.kafka.streams.processor.ThreadMetadata
-
public class ThreadMetadata extends Object
Represents the state of a single thread running within aKafkaStreams
application.
-
-
Constructor Summary
Constructors Constructor Description ThreadMetadata(String threadName, String threadState, String mainConsumerClientId, String restoreConsumerClientId, Set<String> producerClientIds, String adminClientId, Set<TaskMetadata> activeTasks, Set<TaskMetadata> standbyTasks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<TaskMetadata>
activeTasks()
String
adminClientId()
String
consumerClientId()
boolean
equals(Object o)
int
hashCode()
Set<String>
producerClientIds()
String
restoreConsumerClientId()
Set<TaskMetadata>
standbyTasks()
String
threadName()
String
threadState()
String
toString()
-
-
-
Method Detail
-
threadState
public String threadState()
-
threadName
public String threadName()
-
activeTasks
public Set<TaskMetadata> activeTasks()
-
standbyTasks
public Set<TaskMetadata> standbyTasks()
-
consumerClientId
public String consumerClientId()
-
restoreConsumerClientId
public String restoreConsumerClientId()
-
adminClientId
public String adminClientId()
-
-