File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Clojure/Clojure.Source/clojure/clr Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 7575
7676(defn stdin
7777 " Given a process, return the stdin of the external process (an OutputStream)"
78+ {:added " 1.12" }
7879 ^StreamWriter [^Process process]
7980 (.get_StandardInput process))
8081
8182(defn stdout
8283 " Given a process, return the stdout of the external process (an InputStream)"
84+ {:added " 1.12" }
8385 ^StreamReader [^Process process]
8486 (.get_StandardOutput process))
8587
8688(defn stderr
8789 " Given a process, return the stderr of the external process (an InputStream)"
90+ {:added " 1.12" }
8891 ^StreamReader [^Process process]
8992 (.get_StandardError process))
9093
9194(defn exit-ref
9295 " Given a Process (the output of 'start'), return a reference that can be
9396 used to wait for process completion then returns the exit value."
97+ {:added " 1.12" }
9498 [^Process process]
9599 (reify
96100 IDeref
You can’t perform that action at this time.
0 commit comments