09-17-2014 09:40 AM
09-18-2014 02:09 AM
@Deployment
public void testWaitStateBehavior() {
ProcessInstance pi = runtimeService.startProcessInstanceByKey("receiveTask");
Execution execution = runtimeService.createExecutionQuery()
.processInstanceId(pi.getId())
.activityId("waitState")
.singleResult();
assertNotNull(execution);
runtimeService.signal(execution.getId());
assertProcessEnded(pi.getId());
}
09-18-2014 05:21 AM
09-19-2014 02:25 AM
09-24-2014 06:55 AM
09-26-2014 02:05 AM
There are no way to do that in a single "serviceTask" task ?
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.