Package org.apache.ignite.cdc
Interface CdcCacheEvent
- 
 public interface CdcCacheEventNotification ofCdcConsumerabout cache creation/change events.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intcacheId()CacheConfiguration<?,?>configuration()Note,CacheConfiguration.getQueryEntities()value not changed on table schema change.Collection<QueryEntity>queryEntities()Returns current state of configuredQueryEntity.
 
- 
- 
- 
Method Detail- 
cacheIdint cacheId() - Returns:
- Cache ID.
- See Also:
- CacheView.cacheId()
 
 - 
configurationCacheConfiguration<?,?> configuration() Note,CacheConfiguration.getQueryEntities()value not changed on table schema change. Current table schema can be obtained byqueryEntities().- Returns:
- Initial cache configuration.
 
 - 
queryEntitiesCollection<QueryEntity> queryEntities() Returns current state of configuredQueryEntity.QueryEntitycan be changed by executing DDL on SQL tables. Note,CacheConfiguration.getQueryEntities()returns initial definition ofQueryEntity.- Returns:
- Query entities for cache.
 
 
- 
 
-