Package io.confluent.ksql.api.client
Interface TableInfo
-
public interface TableInfo
Metadata for a ksqlDB table.
-
-
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 table
-
getTopic
String getTopic()
- Returns:
- the name of the Kafka topic underlying this ksqlDB table
-
getKeyFormat
String getKeyFormat()
- Returns:
- the key format of the data in this table
-
getValueFormat
String getValueFormat()
- Returns:
- the value format of the data in this table
-
isWindowed
boolean isWindowed()
- Returns:
- whether this ksqlDB table is windowed
-
-