Package io.confluent.ksql.api.client
Interface StreamInfo
-
public interface StreamInfo
Metadata for a ksqlDB stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKeyFormat()
String
getName()
String
getTopic()
String
getValueFormat()
boolean
isWindowed()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- the name of this stream
-
getTopic
String getTopic()
- Returns:
- the name of the Kafka topic underlying this ksqlDB stream
-
getKeyFormat
String getKeyFormat()
- Returns:
- the key format of the data in this stream
-
getValueFormat
String getValueFormat()
- Returns:
- the value format of the data in this stream
-
isWindowed
boolean isWindowed()
- Returns:
- whether the key is windowed.
-
-