prooph / processing

Deprecated package. Will be removed in 03/2016! Use:
https://github.com/proophsoftware/processing
BSD 3-Clause "New" or "Revised" License
5 stars 0 forks source link

Support time constraints #44

Open codeliner opened 10 years ago

codeliner commented 10 years ago

Different scenarios can include time constraints:

  1. A workflow should start at a specific time.
  2. A workflow should wait for a specific time to continue.
  3. Relative deadlines for the workflow or child processes.

Dealing with time constraints should be optional. One solution would be to have spezial process types that are capable of managing time. And another solution would be to work with process managers that sit in front of the WorkflowProcessor and observe the message flow.

codeliner commented 10 years ago

A combination of both solutions will be the first approach. The WorkflowEngine should provide a TimeTracker and a Process registers itself at the TimeTracker to delegate the observation to the TimeTracker.