Package org.teiid.events
Interface EventListener
-
public interface EventListener
A listener interface than can be registered withEventDistributor
that will notify the events occurring in the Teiid engine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
vdbDeployed(String vdbName, String vdbVersion)
Invoked when VDB is deployedvoid
vdbLoaded(VDB vdb)
VDB and all its metadata has been loaded and in ACTIVE state.void
vdbLoadFailed(VDB vdb)
VDB failed to load and in FAILED state; Note this can be called multiple times for given VDBvoid
vdbUndeployed(String vdbName, String vdbVersion)
Invoked when VDB undeployed
-
-
-
Method Detail
-
vdbDeployed
void vdbDeployed(String vdbName, String vdbVersion)
Invoked when VDB is deployed- Parameters:
vdbName
-vdbVersion
-
-
vdbUndeployed
void vdbUndeployed(String vdbName, String vdbVersion)
Invoked when VDB undeployed- Parameters:
vdbName
-vdbVersion
-
-
vdbLoaded
void vdbLoaded(VDB vdb)
VDB and all its metadata has been loaded and in ACTIVE state.- Parameters:
vdb
-
-
vdbLoadFailed
void vdbLoadFailed(VDB vdb)
VDB failed to load and in FAILED state; Note this can be called multiple times for given VDB- Parameters:
vdb
-
-
-