IResultCollector Interface |
Note: This API is now obsolete.
collect function execution results, can be overriden
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax[ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public interface IResultCollector
<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>
Public Interface IResultCollector
[ObsoleteAttribute(L"Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public interface class IResultCollector
[<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>]
type IResultCollector = interface end
The IResultCollector type exposes the following members.
Methods
| Name | Description |
---|
 | AddResult |
add result from a single function execution
|
 | ClearResults |
GemFire will invoke this method before re-executing function (in case of
Function Execution HA) This is to clear the previous execution results from
the result collector
@since 6.5
|
 | EndResults |
Call back provided to caller, which is called after function execution is
complete and caller can retrieve results using getResult()
|
 | GetResult |
get result
|
 | GetResult(UInt32) |
get result
|
Top
See Also