Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 482 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 482 Bytes

clj-faktory

Faktory workers in Clojure!

Install

Clojars Project

Usage

(require '[clj-faktory.core :as faktory])

(faktory/defjob :say-hello [first-name]
  (println "Hello" first-name "!"))
  
(let [worker (faktory/worker "tcp://localhost:7419" {:concurrency 5})]
  (faktory/perform-async worker :say-hello ["Erik"])
  (faktory/start worker))