Uses of Class
com.jstatcom.engine.PCall

Packages that use PCall
com.jstatcom.engine Abstract implementation of the engine communication as well as the procedure call. 
 

Uses of PCall in com.jstatcom.engine
 

Methods in com.jstatcom.engine with parameters of type PCall
 void PCall.add(PCall pCall)
          Adds another call object that will be executed if this call finished successfully.
 void PCallListener.finished(PCall pc)
          Invoked when a procedure finishes, no matter whether the call was successful, interrupted or erroneous.
 void PCallAdapter.finished(PCall pc)
           
 void DefaultPCallControl.finished(PCall pc)
           
 void PCallListener.queued(PCall pc)
          Invoked when a procedure was queued in the main worker thread.
 void PCallAdapter.queued(PCall pc)
           
 void DefaultPCallControl.queued(PCall pc)
           
 void PCall.remove(PCall pCall)
          Removes an element from the list of calls that are executed if this call finishes ok.
 void PCallListener.started(PCall pc)
          Invoked when the procedure's run method was called within the main worker thread.
 void PCallAdapter.started(PCall pc)
           
 void DefaultPCallControl.started(PCall pc)