コード例 #1
0
ファイル: TopicSelector.java プロジェクト: debezium/debezium
 /**
  * Get the name of the topic for the given server name.
  *
  * @param tableId the identifier of the table; may not be null
  * @return the topic name; never null
  */
 default String getTopic(TableId tableId) {
   return getTopic(tableId.catalog(), tableId.table());
 }