文件名称:state_fair:用于Elixir应用程序的状态机系统
文件大小:6KB
文件格式:ZIP
更新时间:2024-05-19 19:25:25
Elixir
州展 受到启发, 安装 该软件包可以安装为: 添加state_fair到您的依赖项列表mix.exs : def deps do [{:state_fair,“〜> 0.1”}]结束 概述 defmodule Order do import StateFair defstruct status: :new state_manager :status do event :purchase do transition from: :new , to: :ordered end event :ship do transition from: :ordered , to: :shipped end event :cancel do transition from: [ :new , :ordered ],
【文件预览】:
state_fair-master
----mix.lock(159B)
----.gitignore(41B)
----mix.exs(771B)
----LICENSE.md(1KB)
----README.md(1KB)
----config()
--------config.exs(1KB)
----lib()
--------state_fair()
--------state_fair.ex(1KB)
----test()
--------state_fair_test.exs(2KB)
--------test_helper.exs(15B)