Hi All,
I have a setup that is creating a cache with two SQL tables in it. I am
able to update the cache and now want to have a client use the continuous
queries to be notified of any changes to the cache.
the cache is using the default config and has the cache defined as
IgniteCache<Object, Object> testCache = ignite.getOrCreateCache(new
CacheConfiguration<>("MAIN")
.setIndexedTypes(Long.class, SecurityExchanges.class)
.setIndexedTypes(Long.class, Exchange.class)
.setIndexedTypes(Long.class, Department.class)
.setAtomicityMode(CacheAtomicityMode.ATOMIC)
.setBackups(0)
);
Once the data is loaded and I update a value, how can a client listen to
this to get updates?
Thanks in advance
--
*Don't be afraid to be wrong. Don't be afraid to admit you don't have all
the answers. Don't be afraid to say "I think" instead of "I know."*