jobscheduler.com
👋 This is jobscheduler.com 😎
import flux.Engine;
import flux.EngineHelper;
import flux.Factory;
import flux.FlowChart;
// First, make a Flux engine.
Factory factory = Factory.makeInstance();
Engine engine = factory.makeEngine();
// Flux models jobs using flow charts.
// Create a flow chart.
FlowChart flowChart =
EngineHelper.makeFlowChart("Simple");
// Flow charts consist of actions and triggers.
// An action performs some act, step, or task.
// A trigger waits for an event to occur.