Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.1.0)
E69639-01
Process a collection of IInvocableCacheEntry objects.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.1000 (12.2.1.1000)

Syntax

C#
IDictionary ProcessAll(
	ICollection entries
)

Parameters

entries
Type: System.Collections..::..ICollection
A collection of IInvocableCacheEntry objects to process.

Return Value

A dictionary containing the results of the processing, up to one entry for each IInvocableCacheEntry that was processed, keyed by the keys of the dictionary that were processed, with a corresponding value being the result of the processing for each key.

Remarks

This method is semantically equivalent to:
            IDictionary results = new Hashtable();
            foreach (IInvocableCacheEntry entry in entries)
            {
                results[entry.Key] = Process(entry);
            }
            return results;
            

See Also