首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 一个流畅的状态机接口

一个流畅的状态机接口

  • 资源大小:47.40 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: 一个 接口 状态 流畅

资 源 简 介

This port is no longer maintained, please go to https://github.com/oxo42/stateless4j New : Use it with maven !!! Introduction Create state machines and lightweight state machine-based workflows directly in java code: ``` Action callStartTimer = new Action() { @Override public void doIt() { StartCallTimer(); } }; Action callStopTimer = new Action() { @Override public void doIt() { StopCallTimer(); } }; StateMachine phoneCall = new StateMachine(State.OffHook); phoneCall.Configure(State.OffHook) .Permit(Trigger.CallDialed, State.Ringing); phoneCall.Configure(State.Ringing) .Permit(Trigger.HungUp, State.OffHook) .Permit(Trigger.CallConnected, State.Connected); phoneCall.Configure(State.Connected) .OnEntry(callStartTimer) .OnExit(callStopTimer) .Permit(Trigger.LeftMessage, State.OffHook) .Permit(Trigger.HungUp,

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.202405s