Interface CreateModelEvent
-
- All Superinterfaces:
CatalogModificationEvent,ModelModificationEvent
@PublicEvolving public interface CreateModelEvent extends ModelModificationEvent
When a model is created, aCreateModelEventevent will be created and fired.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static CreateModelEventcreateEvent(CatalogContext context, org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.table.catalog.CatalogModel model, boolean ignoreIfExists, boolean isTemporary)org.apache.flink.table.catalog.ObjectIdentifieridentifier()booleanignoreIfExists()booleanisTemporary()org.apache.flink.table.catalog.CatalogModelmodel()-
Methods inherited from interface org.apache.flink.table.catalog.listener.CatalogModificationEvent
context
-
-
-
-
Method Detail
-
identifier
org.apache.flink.table.catalog.ObjectIdentifier identifier()
- Specified by:
identifierin interfaceModelModificationEvent
-
model
org.apache.flink.table.catalog.CatalogModel model()
- Specified by:
modelin interfaceModelModificationEvent
-
ignoreIfExists
boolean ignoreIfExists()
-
isTemporary
boolean isTemporary()
- Specified by:
isTemporaryin interfaceModelModificationEvent
-
createEvent
static CreateModelEvent createEvent(CatalogContext context, org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.table.catalog.CatalogModel model, boolean ignoreIfExists, boolean isTemporary)
-
-