Package omero.cmd
Interface _CmdCallbackOperations
-
- All Known Subinterfaces:
CmdCallback
- All Known Implementing Classes:
_CmdCallbackDisp
,_CmdCallbackTie
,CmdCallbackI
,ImportLibrary.ImportCallback
public interface _CmdCallbackOperations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
finished(Response rsp, Status s, Ice.Current __current)
Called when the command has completed in any fashion including cancellation.void
step(int complete, int total, Ice.Current __current)
Notifies clients that the given number of steps from the total is complete.
-
-
-
Method Detail
-
step
void step(int complete, int total, Ice.Current __current)
Notifies clients that the given number of steps from the total is complete. This method will not necessarily be called for every step.- Parameters:
__current
- The Current object for the invocation.
-
finished
void finished(Response rsp, Status s, Ice.Current __current)
Called when the command has completed in any fashion including cancellation. TheStatus.flags
list will contain information about whether or not the process was cancelled.- Parameters:
__current
- The Current object for the invocation.
-
-