LiteFlow LiteFlow
💒Home
📚Documents
💖Donation
🚀Plugin
  • About LiteFlow
  • Update Record
Community
Users
Gitee (opens new window)
Github (opens new window)
  • 简体中文 (opens new window)
  • English (opens new window)
💒Home
📚Documents
💖Donation
🚀Plugin
  • About LiteFlow
  • Update Record
Community
Users
Gitee (opens new window)
Github (opens new window)
  • 简体中文 (opens new window)
  • English (opens new window)
  • 🍤Introduction
  • 🍓Features
  • 🍟Quick Start(Hello world)

    • 🍄Notice
    • 🌿Springboot environment

      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
    • 🌱Spring environment

      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
    • 🌵Other environment

      • 🍄Notice
      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
  • 🍢Configuration item

    • 🍄Notice
    • 🌿Springboot environment
    • 🌱Spring environment
    • 🌵Other environment
  • 🗂Rules file

    • 📔Rules file format
    • 📕Local rule file
    • 📗Zookeeper source
    • 📘SQL database source
    • 📋Nacos source
    • 🗄Etcd source
    • 📙Custom source
  • 🔗General components

    • 📎Common component
    • ✂️Switch component
    • 📌If component
    • 🧬For component
    • ⛓While component
    • 🧿Break component
  • 🧩How to write EL rules

    • 🍄Notice
    • 🌴Serial mode
    • 🎋Parallel mode
    • 🌾Switch mode
    • 🌵If mode
    • 🌳Loop mode
    • 🍁Use sub chain
    • 🍂Use sub variables
    • 💐Complex example
    • 🌻About semicolons
    • 🌰About comments
    • 🐚Component Name Package
  • 🌮Data context

    • 🍄Notice
    • 🌯Definition and use
    • 🪶Pass initialized context
  • 🛩Flow executor

    • 🍄Notice
    • 🎡Executor method
    • 🎢Chain input parameter
    • 🎈LiteflowResponse object
  • 🍋Script component

    • 🍫Choose a script language
    • 🍕Define script component
    • 🌯Define file script
    • 🍣Interact with java
    • 🍘Dynamic refresh script
  • 🍇Declarative component

    • 🥭What is a declarative component
    • 🧅Class level declaration
    • 🥥Method level declaration
  • 🎲Dynamic rules

    • 🍄Notice
    • 🎯How to build
  • 🎨Advanced features

    • 🍒Pre & Finally components
    • 🥠Substitute component
    • 🍉Component Parameters
    • 🍑Component alias
    • 🍍Component tag
    • 🥝Component event
    • 🥑Implicit chain
    • 🍕Private delivery
    • 🍣Component retry
    • 🍖Smooth hot refresh
    • 🍪Component aspect
    • 🍡Step information
    • 🧊Exceptions
    • 🧇Printing details
    • 🧁Custom request id
    • 🌭Multiple type rules
    • 🥗Asynchronous thread pool
    • 🍿Custom component executor
    • 🍥Simple monitor
    • 🧉DTD in Xml
  • ⛱Test cases and demo

    • 🪁Test cases
    • 🪀Demo
  • 🪂Performance
  • v2.9.X文档
  • 🍢Configuration item
铂赛东
2022-06-06

🌵Other environment

LiteflowConfig config = new LiteflowConfig();
//rule file path
config.setRuleSource("config/flow.el.xml");
//-----------------The following configs are optional-----------------
//Whether liteflow is enabled, the default is true
config.setEnable(true);
//Whether the banner of liteflow is enabled, the default is true
config.setPrintBanner(true);
//The node of zkNode, only works when zk is used as the configuration source
config.setZkNode("/lite-flow/flow");
//Maximum number of slots for context, default is 1024
config.setSlotSize(1024);
//The number of threads of the execute2Future of FlowExecutor, the default is 64
config.setMainExecutorWorks(64);
//FlowExecutor's execute2Future's custom thread pool Builder, LiteFlow provides the default Builder
config.setMainExecutorClass("com.yomahub.liteflow.thread.LiteFlowDefaultMainExecutorBuilder");
//Custom request ID generation class, LiteFlow provides a default generation class
config.setRequestIdGeneratorClass("com.yomahub.liteflow.flow.id.DefaultRequestIdGenerator");
//Thread pool Builder for parallel nodes, LiteFlow provides default Builder
config.setThreadExecutorClass("com.yomahub.liteflow.thread.LiteFlowDefaultWhenExecutorBuilder");
//The longest waiting time in seconds for asynchronous threads (only for when), the default value is 15
config.setWhenMaxWaitSeconds(15);
//The maximum number of threads in the global asynchronous thread pool of the when node, the default is 16
config.setWhenMaxWorkers(16);
//When node global asynchronous thread pool waiting queue number, the default is 512
config.setWhenQueueLimit(512);
//Whether to parse the rules at startup, the default is true
config.setParseOnStart(true);
//Global retries, default is 0
config.setRetryCount(0);
//Whether to support mixing of different types of loading methods, the default is false
config.setSupportMultipleType(false);
//Global default node executor
config.setNodeExecutorClass("com.yomahub.liteflow.flow.executor.DefaultNodeExecutor");
//Whether to print the log during execution, the default is true
config.setPrintExecutionLog(true);
//Whether monitoring is enabled, it is disabled by default
config.setEnableLog(false);
//Monitoring queue storage size, the default value is 200
config.setQueueLimit(200);
//Monitor how many milliseconds to delay execution at the beginning, the default value is 300000 milliseconds, which is 5 minutes
config.setDelay(300000L);
//how many milliseconds the monitoring log print. The default value is 300000 milliseconds, which is 5 minutes.
config.setPeriod(300000L);

notice

rule-source is required whenever rules are used.

But if you construct rules dynamically with code, then the rule-source configuration is automatically invalid. Because code constructs use code to assemble rules, no rules files are required. For details, please refer to Dynamic Rules.

Help us improve this document (opens new window)
last update: 2022/10/13, 00:02:27
🌱Spring environment
📔Rules file format

← 🌱Spring environment 📔Rules file format→

Theme by Vdoing | Copyright © 2020-2022 铂赛东 | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式