@ztellman, what's the difference between using manifold.deferred/timeout!
and clojure.core/deref
timeout?
@miikka deferred/timeout!
will make the deferred return the supplied “timeout” value when deref
ed. In other words it transfers the deferred into ready state. clojure.core/deref
only tries to look inside a derefable and doesn’t change its value or state.
right