Interface ExecutionStatusListenerInterface

All Superinterfaces:
Remote

public interface ExecutionStatusListenerInterface extends Remote
Deprecated.
This interface is implemented by clients who need to be notified of stored process execution status changes. See the package description documentation for usage information.
Since:
1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated.
    Signal a change in status in the execution of a stored process.
  • Method Details

    • executionStatusChanged

      void executionStatusChanged(ExecutionInterface storedProcessExecution) throws RemoteException
      Deprecated.
      Signal a change in status in the execution of a stored process. A client implements this method and will get control when the status of execution of the stored process changes. This method is called twice: when the stored process begins executing and when the stored process completes execution. The status is available by calling the getStatus() method on the parameter.
      Parameters:
      storedProcessExecution - the ExecutionInterface object which describes the execution of the stored process
      Throws:
      RemoteException - if a network anomaly is encountered.