Skip to content

Instantly share code, notes, and snippets.

@murtaza52
Created June 29, 2012 07:10
Show Gist options
  • Save murtaza52/3016422 to your computer and use it in GitHub Desktop.
Save murtaza52/3016422 to your computer and use it in GitHub Desktop.
Pubsub example from shoreleave
(ns pm.client.models
(:require [pm.client.utils :as utils]
[shoreleave.pubsubs.simple :as pbus]
[shoreleave.client.pubsubs.protocols :as pubsub]))
(def proj (atom {:hello 2}))
(def bus (pbus/bus))
(pubsub/publishize proj bus)
(pubsub/subscribe bus proj #(js/console.log (pr-str %)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment