Created
March 2, 2018 20:13
-
-
Save danielef/0cd1abe03813687e59d918e64df6ea14 to your computer and use it in GitHub Desktop.
Caudal / Sink de ejemplo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Sinks | |
| (defsink my-sink 1 ;; backpressure | |
| (->INFO [:all] | |
| (time-stampit [:millis] | |
| (->INFO [:all] | |
| (counter [:s-state :n] | |
| (defstream [event] | |
| (println "hola: " event)))))) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment