Fettle - a state machine framework

I would like to introduce Fettle, a simple yet powerful state machine framework written in java using generics.
http://thehiflyer.github.com/Fettle/

In Fettle it is easy to construct a state machine template using a builder and then have that template produce state machine instances. This keeps the memory footprint lower for cases when many entities need their own copy of a state machine.

I just released 0.8.0 of my state machine framework for java.
The major changes includes

  • Improved thread safety
  • Arguments are changed into a generic context
  • Improved builders

If you need state handling in java, give it a go and let me know how I can improve it.

I’ve been thinking of trying this for a while, but never got to it and forgot about it. I’ll download and try, now!

Cheers :slight_smile:

seams like a nice lib

I use it in TUER, it works like a charm ;D

Do you have any example? sorry but I learn fast inly from example.

Example of what? Have you looked at the documentation on github? If that is now enough there are plenty of tests in the source (100% coverage). If that still isn’t enough, please let me know what a good example would be and I might write one.

I can get a glance from your front page’s code pieces but maybe you have a full working example (project)*.