Package org.jbpm.pvm.internal.client

Examples of org.jbpm.pvm.internal.client.ClientExecution.signal()


  public void complete(String outcome) {
    historyTaskComplete(outcome);
   
    if (isSignalling()) {
      ClientExecution execution = (ClientExecution) getExecution();
      execution.signal(outcome);
    }
   
    if (superTask != null) {
      superTask.subTaskComplete(this, outcome);
    }
View Full Code Here


    execution = dbSession.findExecutionById(executionId);
    if (execution==null) {
      throw new JbpmException("execution "+executionId+" does not exist");
    }
   
    execution.signal(signalName, parameters);
   
    return execution.getProcessInstance();
  }
}
View Full Code Here

  public void complete(String outcome) {
    historyTaskComplete(outcome);
   
    if (isSignalling()) {
      ClientExecution execution = (ClientExecution) getExecution();
      execution.signal(outcome);
    }
   
    if (superTask != null) {
      superTask.subTaskComplete(this, outcome);
    }
View Full Code Here

    execution = dbSession.findExecutionById(executionId);
    if (execution==null) {
      throw new JbpmException("execution "+executionId+" does not exist");
    }
   
    execution.signal(signalName, parameters);
   
    return execution.getProcessInstance();
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.