Share via


ICluster::get_IsAsynchronous method

Determines whether calls to the server are executed asynchronously.

Syntax

HRESULT get_IsAsynchronous(
  [out] VARIANT_BOOL *pRetVal
);

Parameters

  • pRetVal [out]
    The value is VARIANT_TRUE if calls to the cluster are executed asynchronously. The value is VARIANT_FALSE if the calls are executed synchronously.

Return value

If the method succeeds, the return value is S_OK. Otherwise, the return value is an error code. To get a description of the error, call the ICluster::get_ErrorMessage method.

Remarks

By default, calls to the cluster are executed synchronously. The default behavior is the best choice for most applications. To execute calls asynchronously, call the ICluster::put_IsAsynchronous method.

Requirements

Product

Compute Cluster Pack Client Utilities

Type library

Ccpapi.tlb

See also

ICluster