aleph

miikka 2017-08-10T06:32:47.928894Z

@ztellman, what's the difference between using manifold.deferred/timeout! and clojure.core/deref timeout?

dm3 2017-08-10T07:56:55.299765Z

@miikka deferred/timeout! will make the deferred return the supplied “timeout” value when derefed. 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.

miikka 2017-08-10T09:01:01.644314Z

right