Skip to content
View andradefil's full-sized avatar
😎
😎

Organizations

@Datomic

Block or report andradefil

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. example pipeline-async example pipeline-async
    1
    (require '[clojure.core.async :as a])
    2
    
                  
    3
    (def from (a/chan 10))
    4
    (def to (a/chan 10))
    5
    
                  
  2. gen and select gen and select
    1
    (require  '[clojure.test.check.generators :as tgen])
    2
    (def gen-vals-and-select
    3
      (tgen/bind
    4
       gen-db-vals
    5
       (fn [db-vals]
  3. Testing Thread Interruption Testing Thread Interruption
    1
    (require '[clojure.core.async :as a])
    2
    
                  
    3
    (a/<!! (a/thread (Thread/sleep 3000) "Foo"))
    4
    
                  
    5
    (def c (a/chan 2))