Package org.teiid.events
Interface EventListener
-
public interface EventListenerA listener interface than can be registered withEventDistributorthat will notify the events occurring in the Teiid engine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvdbDeployed(String vdbName, String vdbVersion)Invoked when VDB is deployedvoidvdbLoaded(VDB vdb)VDB and all its metadata has been loaded and in ACTIVE state.voidvdbLoadFailed(VDB vdb)VDB failed to load and in FAILED state; Note this can be called multiple times for given VDBvoidvdbUndeployed(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-
-
-