Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.81 KB

README.md

File metadata and controls

25 lines (17 loc) · 1.81 KB

This repository holds several code snippets (also known as mini demos) that demonstrate how to utilize iWF to perform a minimum function.

Various minimum functions can be effortlessly combined to accomplish more intricate tasks, much like assembling several LEGO pieces to create an impressive model.

If you are interested in exploring larger demos showcasing such combinations, please refer to iwf-java-samples.

Here is the list of currently available code snippets, and we are actively working on adding more to it.

  • Interruptible Timer

    • Implement a timer function to execute actions with delays.
    • Furthermore, this timer is interruptible, enabling the prevention of executing the planned actions when necessary. interruptible_timer.png
  • Admin-controlled Failback

    • Automatically re-process the same requests that triggered exceptions once we have fixed the bugs. admin_controlled_failback.png
  • Multiple Task Dependencies

    • Service A awaits the results of both Service B and Service C. Only after both B and C have completed their tasks can A initiate its own task. multiple_task_dependencies.png
  • Conditional Storage

    • Only store some data under specific conditions. If the condition is not met, completely delete the data. conditional_storage.png