(clean-relay rt)
(rt-basic {:keys [id lang runtime program process] :as m})
creates and starts a basic rt
(def +rt+ (rt-basic {:lang :lua :program :luajit}))
(h/stop +rt+)
creates and starts a basic rt (def +rt+ (rt-basic {:lang :lua :program :luajit})) (h/stop +rt+)
(rt-basic-port {:keys [id lang]})
return the basic port of the rt
return the basic port of the rt
(rt-basic:create {:keys [id lang runtime process] :as m :or {runtime :basic}})
creates a basic rt
creates a basic rt
(rt-oneshot {:keys [id lang runtime program process] :as m})
creates a oneshot runtime
creates a oneshot runtime
(rt-oneshot:create
{:keys [id lang runtime exec program process] :as m :or {runtime :oneshot}})
creates a oneshot runtime
creates a oneshot runtime
(rt-remote-port {:keys [id lang runtime program process] :as m})
creates and starts a remote rt
(def +rt+ (rt-remote-port {:lang :lua :program :luajit}))
(h/stop +rt+)
creates and starts a remote rt (def +rt+ (rt-remote-port {:lang :lua :program :luajit})) (h/stop +rt+)
(rt-remote-port:create
{:keys [id lang runtime process] :as m :or {runtime :remote-port}})
creates a remote rt
creates a remote rt
(rt-twostep {:keys [id lang runtime program process] :as m})
creates a twostep runtime
creates a twostep runtime
(rt-twostep:create
{:keys [id lang runtime exec program process] :as m :or {runtime :twostep}})
creates a twostep runtime
creates a twostep runtime
(rt-websocket {:keys [id lang runtime program process] :as m})
creates and start a websocket runtime
creates and start a websocket runtime
(rt-websocket:create
{:keys [id lang runtime process] :as m :or {runtime :websocket}})
creates a websocket runtime
creates a websocket runtime
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close