Package com.facebook.openwifi.rrm
Class RRMConfig.KafkaConfig
- java.lang.Object
-
- com.facebook.openwifi.rrm.RRMConfig.KafkaConfig
-
-
Field Summary
Fields Modifier and Type Field Description String
autoOffsetReset
Kafka "auto.offset.reset" config ["earliest", "latest"] (KAFKACONFIG_AUTOOFFSETRESET
)String
bootstrapServer
Kafka bootstrap host:port, or empty to disable (KAFKACONFIG_BOOTSTRAPSERVER
)String
groupId
Kafka consumer group ID (KAFKACONFIG_GROUPID
)long
pollTimeoutMs
Kafka consumer poll timeout duration, in ms (KAFKACONFIG_POLLTIMEOUTMS
)String
serviceEventsTopic
Kafka topic holding uCentral microservice events.String
stateTopic
Kafka topic holding uCentral state (KAFKACONFIG_STATETOPIC
)String
wifiScanTopic
Kafka topic holding uCentral wifi scan results (KAFKACONFIG_WIFISCANTOPIC
)
-
Constructor Summary
Constructors Constructor Description KafkaConfig()
-
-
-
Field Detail
-
bootstrapServer
public String bootstrapServer
Kafka bootstrap host:port, or empty to disable (KAFKACONFIG_BOOTSTRAPSERVER
)
-
stateTopic
public String stateTopic
Kafka topic holding uCentral state (KAFKACONFIG_STATETOPIC
)
-
wifiScanTopic
public String wifiScanTopic
Kafka topic holding uCentral wifi scan results (KAFKACONFIG_WIFISCANTOPIC
)
-
serviceEventsTopic
public String serviceEventsTopic
Kafka topic holding uCentral microservice events. Used for detecting API keys and internal endpoints. (KAFKACONFIG_SERVICEEVENTSTOPIC
)
-
groupId
public String groupId
Kafka consumer group ID (KAFKACONFIG_GROUPID
)
-
autoOffsetReset
public String autoOffsetReset
Kafka "auto.offset.reset" config ["earliest", "latest"] (KAFKACONFIG_AUTOOFFSETRESET
)
-
pollTimeoutMs
public long pollTimeoutMs
Kafka consumer poll timeout duration, in ms (KAFKACONFIG_POLLTIMEOUTMS
)
-
-