Previous Topic: Send DataNext Topic: Retrieve Results


Check Status

Use the following code to check status:

...
switch (proxy.asyncCheckResponse(id)) //Perform check
{
...
  case CoopFlow.DATA_READY:
  ...
  case CoopFlow.DATA_NOT_READY:
  ...
  default:
  ...
}
...