de.androbit:brainslug-quartz

brainslug is a control flow abstraction and workflow library

License

License

Categories

Categories

Quartz Application Layer Libs Job Scheduling
GroupId

GroupId

de.androbit
ArtifactId

ArtifactId

brainslug-quartz
Last Version

Last Version

0.21
Release Date

Release Date

Type

Type

jar
Description

Description

brainslug is a control flow abstraction and workflow library

Download brainslug-quartz

How to add to project

<!-- https://jarcasting.com/artifacts/de.androbit/brainslug-quartz/ -->
<dependency>
    <groupId>de.androbit</groupId>
    <artifactId>brainslug-quartz</artifactId>
    <version>0.21</version>
</dependency>
// https://jarcasting.com/artifacts/de.androbit/brainslug-quartz/
implementation 'de.androbit:brainslug-quartz:0.21'
// https://jarcasting.com/artifacts/de.androbit/brainslug-quartz/
implementation ("de.androbit:brainslug-quartz:0.21")
'de.androbit:brainslug-quartz:jar:0.21'
<dependency org="de.androbit" name="brainslug-quartz" rev="0.21">
  <artifact name="brainslug-quartz" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.androbit', module='brainslug-quartz', version='0.21')
)
libraryDependencies += "de.androbit" % "brainslug-quartz" % "0.21"
[de.androbit/brainslug-quartz "0.21"]

Dependencies

compile (4)

Group / Artifact Type Version
de.androbit : brainslug-execution jar 0.21
org.quartz-scheduler : quartz jar 2.2.1
org.slf4j : slf4j-api jar 1.7.6
ch.qos.logback : logback-classic Optional jar 1.1.1

test (4)

Group / Artifact Type Version
com.jayway.awaitility : awaitility jar 1.6.0
junit : junit jar 4.11
org.assertj : assertj-core jar 1.6.0
org.mockito : mockito-all jar 1.9.5

Project Modules

There are no modules declared in this project.

brainslug

brainslug

brainslug is a control flow abstraction library. It enables you to model your application flow as a graph of typed nodes, which can be transformed to different representations or be executed within a customisable environment.

Maven Central

Download

The current version is available in the maven central repository

Hello World

FlowDefinition helloWorldFlow = new FlowBuilder() {
  @Override
  public void define() {
    flowId(id("helloFlow"));

    start(id("start")).execute(task(id("helloTask"), new SimpleTask() {
      @Override
      public void execute(ExecutionContext context) {
        System.out.println("Hello World!");
      }
    }));
  }
}.getDefinition();

//  create brainslug context with defaults
BrainslugContext context = new BrainslugContextBuilder().build();
context.addFlowDefinition(helloWorldFlow);

context.startFlow(helloWorldFlow.getId(), IdUtil.id("start"));

Rendered as:

hello_flow

Documentation

Check the project Github Pages for examples and documentation.

Versioning

Starting with version 1.0.0, brainslug will follow semantic versioning. During the 0.x releases, the minor (.x) releases may include breaking changes.

License

brainslug is published under the terms of the Apache 2.0 License. See the LICENSE file.

Versions

Version
0.21
0.20
0.19
0.18
0.17
0.16
0.15
0.14
0.13
0.12
0.11