我正在为基于Stateless4j API的工作流管理系统实现状态机。但是,我无法找到一种有效的方法来保持Stateless4j中的状态和转换。
作为我们的用例的一部分,我们要求让用户保持活动超过3-4天,直到用户返回工作流程。我们将同时运行多个工作流程。
您能否分享一下您在Stateless4j State Machine实施中坚持状态的最佳实践的见解?
答案 0 :(得分:1)
看起来你需要做的是用自定义访问器和mutator构造你的StateMachine,如下所示:
public class PersistentMutator<S> implements Action1<S> {
Foo foo = null;
@Inject
FooRepository fooRepository;
public PersistentMutator(Foo foo) {
this.foo = foo;
}
@Override
public void doIt(S s) {
foo.setState(s);
fooRepository.save(foo)
}
}
然后你想用你的访问器和mutator调用构造函数:
/**
* Construct a state machine with external state storage.
*
* @param initialState The initial state
* @param stateAccessor State accessor
* @param stateMutator State mutator
*/
public StateMachine(S initialState, Func<S> stateAccessor, Action1<S> stateMutator, StateMachineConfig<S, T> config) {
this.config = config;
this.stateAccessor = stateAccessor;
this.stateMutator = stateMutator;
stateMutator.doIt(initialState);
}
或者,您可能需要查看StatefulJ。它已经内置支持JPA和Mongo中的原子更新状态。这可以为您节省一些时间。
免责声明:我是StatefulJ
的作者