Is there any way I can get the underlying key and value type definition of the cache that is created by some other code? At this point of time I only know the cache name. I don't have any other information about how the cache was created.
IgniteCache<K, V> dataCache = ignite.cache("dataCache");
I need to get the type of K and V in the line above.
I will be attaching a CacheEntryListener to the cache, and I need to access the fields in the value part of the cache. How do I do this? Is there any way I can access the type information from the CacheEntryEvent events that I get in the listener methods?