Sorry, I mistakenly pressed the send shortcut in gmail. The
modified-version of io/copy is:

(defn copy-multi
  ([input outputs] (copy-multi input outputs (make-array Byte/TYPE 1024)))
  ([^java.io.InputStream input outputs buffer]
     (let [size (.read input buffer)]
       (when (pos? size)
         (doseq [^java.io.OutputStrean output outputs]
           (.write output buffer 0 size))
         (recur input outputs buffer)))))

>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
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