public interface _ProcessOperations
Modifier and Type | Method and Description |
---|---|
int |
_wait(Ice.Current __current)
Blocks until poll() would return a non-null return code.
|
boolean |
cancel(Ice.Current __current)
Signal to the Process that it should terminate.
|
boolean |
kill(Ice.Current __current)
Terminate the Process immediately.
|
RInt |
poll(Ice.Current __current)
Returns the return code of the process, or null
if unfinished.
|
void |
registerCallback(ProcessCallbackPrx cb,
Ice.Current __current)
Add a callback for end-of-life events
|
void |
shutdown(Ice.Current __current)
First attempts cancel() several times and finally
resorts to kill to force the process to shutdown
cleanly.
|
void |
unregisterCallback(ProcessCallbackPrx cb,
Ice.Current __current)
Remove a callback for end-of-life events
|
RInt poll(Ice.Current __current) throws ServerError
__current
- The Current object for the invocation.ServerError
int _wait(Ice.Current __current) throws ServerError
__current
- The Current object for the invocation.ServerError
boolean cancel(Ice.Current __current) throws ServerError
__current
- The Current object for the invocation.ServerError
boolean kill(Ice.Current __current)
__current
- The Current object for the invocation.void shutdown(Ice.Current __current)
__current
- The Current object for the invocation.void registerCallback(ProcessCallbackPrx cb, Ice.Current __current) throws ServerError
__current
- The Current object for the invocation.ServerError
void unregisterCallback(ProcessCallbackPrx cb, Ice.Current __current) throws ServerError
__current
- The Current object for the invocation.ServerError