Interface KafkaStreamSubscriber
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
KafkaStreamSetSubscriber,StreamPatternSubscriber
@Experimental public interface KafkaStreamSubscriber extends Serializable
The subscriber interacts withKafkaMetadataServiceto find which Kafka streams the source will subscribe to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<KafkaStream>getSubscribedStreams(KafkaMetadataService kafkaMetadataService)Get the subscribedKafkaStreams.
-
-
-
Method Detail
-
getSubscribedStreams
Set<KafkaStream> getSubscribedStreams(KafkaMetadataService kafkaMetadataService)
Get the subscribedKafkaStreams.- Parameters:
kafkaMetadataService- theKafkaMetadataService.- Returns:
- the subscribed
KafkaStreams.
-
-