예제 #1
0
 /** <inheritDoc /> */
 public TJobRes AffinityCall <TJobRes>(string cacheName, object affinityKey, IComputeFunc <TJobRes> clo)
 {
     return(_compute.AffinityCall(cacheName, affinityKey, clo).Get());
 }
예제 #2
0
        /** <inheritDoc /> */
        public TJobRes AffinityCall <TJobRes>(string cacheName, object affinityKey, IComputeFunc <TJobRes> clo)
        {
            IgniteArgumentCheck.NotNull(cacheName, "cacheName");

            return(_compute.AffinityCall(cacheName, affinityKey, clo).Get());
        }
예제 #3
0
        /** <inheritDoc /> */
        public TR AffinityCall <TR>(string cacheName, object affinityKey, IComputeFunc <TR> clo)
        {
            Compute.AffinityCall(cacheName, affinityKey, clo);

            return(default(TR));
        }