Interface CreateModelEvent
-
- All Superinterfaces:
CatalogModificationEvent
@PublicEvolving public interface CreateModelEvent extends CatalogModificationEvent
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()
-
model
org.apache.flink.table.catalog.CatalogModel model()
-
ignoreIfExists
boolean ignoreIfExists()
-
isTemporary
boolean isTemporary()
-
createEvent
static CreateModelEvent createEvent(CatalogContext context, org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.table.catalog.CatalogModel model, boolean ignoreIfExists, boolean isTemporary)
-
-