use of org.eclipse.che.plugin.maven.server.execution.ProcessExecutor in project che by eclipse.
the class RmiClient method startProcess.
private void startProcess(Pair<Object, Object> key) {
ProcessHandler handler;
try {
ProcessExecutor executor = getExecutor();
handler = executor.execute();
} catch (ExecutionException e) {
removeProcessInfo(key, null, e.getMessage());
return;
}
handler.addProcessListener(getProcessListener(key));
handler.startNotify();
}
Aggregations