IWbemCallResult interface
The IWbemCallResult interface is used for semisynchronous calls of the IWbemServices interface. When making such calls, the called IWbemServices method returns immediately, along with an IWbemCallResult object. Periodically, you can poll the returned IWbemCallResult object to determine the status of the call. You can obtain the result of the original IWbemServices call after it is complete by calling IWbemCallResult::GetCallStatus.
This call-return paradigm is useful in cases where a thread cannot afford to be blocked for more than a few seconds because it is servicing other tasks, such as processing window messages.
Not all IWbemServices methods support this interface because it is not required for all of them. The intent is to allow nonblocking, synchronous operation (semisynchronous operation) for all relevant operations. Because many of the IWbemServices methods are already nonblocking due to the use of enumerators or other constructs, only the following methods need this helper interface to support semisynchronous operation:
Members
The IWbemCallResult interface inherits from the IUnknown interface. IWbemCallResult also has these types of members:
Methods
The IWbemCallResult interface has these methods.
| Method | Description |
|---|---|
| GetCallStatus |
Reports whether a semisynchronous call was successful. |
| GetResultObject |
Returns an IWbemClassObject object, which is the result of a semisynchronous call to IWbemServices::GetObject. |
| GetResultServices |
Returns the result of a semisynchronous call to IWbemServices::OpenNamespace verb action. |
| GetResultString |
Returns an object path, which is the result of a semisynchronous call to IWbemServices::PutInstance. |
Requirements
|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server | Windows 2000 Server [desktop apps only] |
|
Header |
|
Send comments about this topic to Microsoft
Build date: 11/19/2012