Interface CatalogModificationListener
-
@PublicEvolving public interface CatalogModificationListenerA listener that is notified on specific catalog changed in catalog manager.It is highly recommended NOT to perform any blocking operation inside the callbacks. If you block the thread the invoker of catalog manager is possibly blocked. You can perform the operation asynchronously in an executor, but you need to handle timing issues.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEvent(CatalogModificationEvent event)Callback on catalog modification such as database and table ddl operations.
-
-
-
Method Detail
-
onEvent
void onEvent(CatalogModificationEvent event)
Callback on catalog modification such as database and table ddl operations.
-
-