Interface IWorkflowEventQueryExecutor

All Superinterfaces:
IQueryExecutor<IWorkflowEvent>

public interface IWorkflowEventQueryExecutor extends IQueryExecutor<IWorkflowEvent>
Executes workflow event queries and provides different types of results:

Example:

 import ch.ivyteam.ivy.workflow.IWorkflowEvent;
 import ch.ivyteam.ivy.workflow.query.WorkflowEventQuery;

 WorkflowEventQuery query = WorkflowEventQuery.create().where().caseId().isEqual(6);

 List<IWorkflowEvent> events = ivy.wf.getWorkflowEventQueryExecutor().getResults(query);
 Number count = ivy.wf.getWorkflowEventQueryExecutor().getCount(query);
 
Since:
12.0.0
See Also:
API:
This is a public API.
  • Method Details

    • createWorkflowEventQuery

      WorkflowEventQuery createWorkflowEventQuery()
      Creates a workflow event query.
      Returns:
      workflow event query
      See Also:
      API:
      This public API is available in Java.