Core API for creating and managing first class state objects.
Core API for creating and managing first class state objects.
(defstate name doc-string? attr-map? body)
Create a state object, using the optional :start and :stop expressions, and bind it to a var with the given name in the current namespace.
Create a state object, using the optional :start and :stop expressions, and bind it to a var with the given name in the current namespace.
(state & exprs)
Create a state object, using the optional :start, :stop and :name expressions. The first forms are implicitly considered as the :start expression, if not qualified otherwise.
Create a state object, using the optional :start, :stop and :name expressions. The first forms are implicitly considered as the :start expression, if not qualified otherwise.
(state? obj)
Returns true if obj is a State object.
Returns true if obj is a State object.
(status)
Returns a list of active states, in realization order.
Returns a list of active states, in realization order.
(stop)
Stop the active states in the reverse order they were realized.
Stop the active states in the reverse order they were realized.
Add watches to this var to be notified of new (started) or old (closed) states.
Add watches to this var to be notified of new (started) or old (closed) states.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close