On Sep 12, 8:55 am, noahr <[EMAIL PROTECTED]> wrote:
> So it looks like I will have to implement the object I want to send
> across the stream in Java, not clojure (sigh)
>
> Any ideas anyone?

If you've got Clojure available on both ends, you can serialize with
(pr-str...) and deserialize with (read...).  Only works with pure-
Clojure data structures, tho.

Maybe you could use Clojure to generate a native Java collection like
ArrayList and serialize that.

Another option is something like Thrift or Protocol Buffers.

-Stuart
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to