clojure.browser.net/IConnection

protocolsince v0.0-927Edit
Source code @ clojurescript:src/main/cljs/clojure/browser/net.cljs
(defprotocol IConnection
  (connect
    [this]
    [this opt1]
    [this opt1 opt2]
    [this opt1 opt2 opt3])
  (transmit
    [this opt]
    [this opt opt2]
    [this opt opt2 opt3]
    [this opt opt2 opt3 opt4]
    [this opt opt2 opt3 opt4 opt5])
  (close [this]))