ExecutionTResultExecute Method (String, Boolean, UInt32, Boolean) |
Execute a function,
Return resultCollector.
Namespace: GemStone.GemFire.Cache.GenericAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic IResultCollector<TResult> Execute(
string func,
bool getResult,
uint timeout,
bool isHA
)
Public Function Execute (
func As String,
getResult As Boolean,
timeout As UInteger,
isHA As Boolean
) As IResultCollector(Of TResult)
public:
IResultCollector<TResult>^ Execute(
String^ func,
bool getResult,
unsigned int timeout,
bool isHA
)
member Execute :
func : string *
getResult : bool *
timeout : uint32 *
isHA : bool -> IResultCollector<'TResult>
Parameters
- func
- Type: SystemString
The name of the function to be executed. - getResult
- Type: SystemBoolean
Indicating if results are expected. - timeout
- Type: SystemUInt32
Value to wait for the operation to finish before timing out. - isHA
- Type: SystemBoolean
Whether the given function is HA.
Return Value
Type:
IResultCollectorTResult
See Also