Back

broadcast (clj)

(source)

function

(broadcast & ports)
Returns a broadcasting write port which, when written to, writes the value to each of ports. Writes to the broadcasting port will park until the value is written to each of the ports used to create it. For this reason, it is strongly advised that each of the underlying ports support buffered writes.

Examples