List<WorkflowActionBean> actions = store.getRunningActions(actionCheckDelay);
msg.append(" WF_ACTIONS : " + actions.size());
for (WorkflowActionBean action : actions) {
Services.get().get(InstrumentationService.class).get().incr(INSTRUMENTATION_GROUP,
INSTR_CHECK_ACTIONS_COUNTER, 1);
queueCallable(new ActionCheckCommand(action.getId()));
}
store.commitTrx();
}
catch (StoreException ex) {
if (store != null) {