|
Kill_Process |
|
package Connection;
import j4d.open.*;
class Examplet {
/* killProcess allows you to kill an existing process from a connection
*/
public void killProcess(opConnection conn, opProcess process) throws opException{
try {
conn.stopProcess(process);
}
catch (opException er){throw er;}
}
}
|
Kill_Process |
|