Skip to content

Commit c8f1729

Browse files
committed
Update to Java commit afbd209 (2025.06.02): CLJ-2906 Add missing :metadata to new functions in 1.12
1 parent e5280f6 commit c8f1729

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Clojure/Clojure.Source/clojure/clr/process.clj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,26 @@
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

0 commit comments

Comments
 (0)