Re: core.async channel GUID

2013-08-13 Thread David Pollak
And here's a blog post about it: http://blog.goodstuff.im/clojure_http_channels On Wed, Aug 7, 2013 at 4:47 PM, Brandon Bloom wrote: > You can emulate this relatively easily with a pair of > serialize/deserialize functions which read/write to a global atom > containing a map. > > > On Wednesday,

Re: core.async channel GUID

2013-08-13 Thread David Pollak
That's what I went with. Thanks! On Wed, Aug 7, 2013 at 4:47 PM, Brandon Bloom wrote: > You can emulate this relatively easily with a pair of > serialize/deserialize functions which read/write to a global atom > containing a map. > > > On Wednesday, August 7, 2013 7:15:55 PM UTC-4, David Pollak

Re: core.async channel GUID

2013-08-07 Thread Brandon Bloom
You can emulate this relatively easily with a pair of serialize/deserialize functions which read/write to a global atom containing a map. On Wednesday, August 7, 2013 7:15:55 PM UTC-4, David Pollak wrote: > > Howdy, > > I'm working on bridging between core.async channels in the browser and on >

core.async channel GUID

2013-08-07 Thread David Pollak
Howdy, I'm working on bridging between core.async channels in the browser and on the server. It would be very useful to have a GUID associated with the channel so that when I serialize a message that contains a channel, I can send the GUID instead and on the other side, create a proxy channel so t