Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Specifications/RecordWorkflowDiscussion09

< SMILA‎ | Specifications
Revision as of 10:59, 17 November 2008 by Unnamed Poltroon (Talk) (New page: =Problems= # it's wanted to have ability to filter record in Router/Listener before starting any operations # it's wanted to configure ODEWorkflowProcessor with record-filter used. == W...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problems

  1. it's wanted to have ability to filter record in Router/Listener before starting any operations
  2. it's wanted to configure ODEWorkflowProcessor with record-filter used.


WorkflowProcessor

Problems

Now WorkflowProcessor API accepts series of Ids only for starting pipelines.

public interface WorkflowProcessor {
  ...
  Id[] process(String workflowName, Id[] recordIds) throws ProcessingException;
  ...
}
<source>
 
ODEWorkflowProcessor implementation is reading property "record.filter" from it's own configuration file and filtering all records before processing with only one filter.
 
=== Suggested ===
To configure record filter in Router/Listener rules
 
WorkflowProcessor public API should accepts record or Id + filterName.
 
<source lang="java">
public interface WorkflowProcessor {
  ...
  void process(String workflowName, record) throws ProcessingException;
  ...
}
<source>
 
Or
 
<source lang="java">
public interface WorkflowProcessor {
  ...
  void process(String workflowName, Id id, filterName) throws ProcessingException;
  ...
}
<source>

Back to the top