hekailiang / squirrel

squirrel-foundation is a State Machine library, which provided a lightweight, easy use, type safe and programmable state machine implementation for Java.
http://hekailiang.github.io/squirrel/
Other
2.19k stars 540 forks source link

StateMachine.start的一个小问题 #83

Closed SuperNoobTao closed 6 years ago

SuperNoobTao commented 6 years ago

额,有一点不太明白, 我在ExtensionMethodCallTest中把start()注释了,因为文档里说是状态机默认自启动的。 但是,注释之后报了错: ![Uploading image.png…]()

请问这是为什么呢?我仅仅是把手动启动改成状态机默认自启动,它的行为就不一样了。

hekailiang commented 6 years ago

start()默认context为null,直接autoStart时,会使用fire event时的context作为state machine的启动上下文

SuperNoobTao commented 6 years ago

好的,谢谢作者大大