Class Process

Superclasses :
lang::Runnable
Package :
lang

This class is a convenient way of creating a sub-process in a program,

Source

Class summary
Methods inherited from lang::Runnable
run()
Methods defined in this class
initially() invoke_run() join() set_runnable(r) sleep(n) start() stop()
Variables defined in this class
pid runnable

Method detail

initially()


invoke_run()

Private method, not intended for client invocation

join()

Called by the parent. The method waits for the child to terminate, and then closes the pipes.
Source

set_runnable(r)

Private method, not intended for client invocation

sleep(n)

Sleep for n milliseconds.
Source

start()

Called by the parent process to start the child
Source

stop()

Called by the parent to kill the child. Then the join method is invoked.
Source

Variable detail

pid


runnable