Liking cljdoc? Tell your friends :D

mount.extensions.namespace-deps

This extension offers more advanced up-to starting and down-to stopping, by calculating a dependency graph of defstates. It does this by looking at the namespace dependencies where the defstates are defined. Using this graph, mount will only start or stop the transitive dependencies or dependents.

Using these functions, your project must include the org.clojure/tools.namespace library. This extension has been tested with version 0.2.11, 0.3.1 and 1.1.0 of that library.

This extension offers more advanced up-to starting and down-to
stopping, by calculating a dependency graph of defstates. It does
this by looking at the namespace dependencies where the defstates
are defined. Using this graph, mount will only start or stop the
transitive dependencies or dependents.

Using these functions, your project *must* include the
org.clojure/tools.namespace library. This extension has been tested
with version 0.2.11, 0.3.1 and 1.1.0 of that library.
raw docstring

build-graphsclj

(build-graphs)

Build two graphs of state keywords, represented as maps where the values are the dependencies or dependents of the keys. See also mount.extensions.common-deps/with-transitives.

Build two graphs of state keywords, represented as maps where the
values are the dependencies or dependents of the keys. See also
`mount.extensions.common-deps/with-transitives`.
sourceraw docstring

startclj

(start)
(start up-to-var)

Just like the core start, except with an up-to-var, it only starts the transitive dependencies of that state.

Just like the core `start`, except with an `up-to-var`, it only
starts the transitive dependencies of that state.
sourceraw docstring

stopclj

(stop)
(stop down-to-var)

Just like the core stop, except with a down-to-var, it only stops the transitive dependents of that state.

Just like the core `stop`, except with a `down-to-var`, it only
stops the transitive dependents of that state.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close