Integratec API Platform
opJavaApi.OPStatusCallback Interface Reference

Interface to be overridden to utilize status message callback functionality. More...

Inherits Callback.

Inherited by StatusCallback.

Detailed Description

Interface to be overridden to utilize status message callback functionality.

Callback Example:
// Implement an example callback to print the id and status given
class StatusCallback implements OPStatusCallback {
@Override
public void statusCallback(int connection, WString id, WString statusMsg) {
System.out.println(id);
System.out.println(statusMsg);
}
}