- NOTE: not yet fully working distributed sm, this commit is considered to be a stage 1 of further commits on this matter. - Preliminary concept of DistributedStateMachine, StateMachineEnsemble and StateMachinePersist. - New module spring-statemachine-zookeeper order to persist state in a distributed matter. - Refactoring concept of a state machine access to get better internal access into a sm via functional interfaces. - Change build to use jdk7 and change test to rely on jdk8 order to test functional lambdas. - new zookeeper sample demonstrating distributed concepts. - Relates t0 #35 and #34. - No docs until things are fully implemented.
26 lines
715 B
Groovy
26 lines
715 B
Groovy
description = 'Spring State Machine Samples Common'
|
|
|
|
project('spring-statemachine-samples-turnstile') {
|
|
description = 'Spring State Machine Turnstile Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-showcase') {
|
|
description = 'Spring State Machine Showcase Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-cdplayer') {
|
|
description = 'Spring State Machine CD Player Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-tasks') {
|
|
description = 'Spring State Machine Parallel Regions Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-washer') {
|
|
description = 'Spring State Machine History State Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-zookeeper') {
|
|
description = 'Spring State Machine Distributed Sample'
|
|
}
|