Apache Ignite.NET
Apache.Ignite.Core.Cache.ICacheEntryProcessorResult< out out TK, out out T > Interface Template Reference

Represents a result of processing ICacheEntry<K, V> by ICacheEntryProcessor<K, V, A, R>. More...

Properties

TK Key [get]
 Gets the cache key. More...
 
Result [get]
 Gets the result of processing an entry. More...
 

Detailed Description

Template Parameters
TKKey type.
TProcessor result type.

Property Documentation

TK Apache.Ignite.Core.Cache.ICacheEntryProcessorResult< out out TK, out out T >.Key
get
T Apache.Ignite.Core.Cache.ICacheEntryProcessorResult< out out TK, out out T >.Result
get

If an exception was thrown during the processing of an entry, either by the ICacheEntryProcessor<K, V, A, R> itself or by the Caching implementation, the exceptions will be wrapped and re-thrown as a CacheEntryProcessorException when calling this property.

The result.