< prev index next >

src/java.base/share/classes/java/lang/ProcessBuilder.java

Print this page

        

*** 1249,1258 **** --- 1249,1259 ---- * * @throws UnsupportedOperationException * If the operating system does not support the creation of processes * * @throws IOException if an I/O error occurs + * @since 9 */ public static List<Process> startPipeline(List<ProcessBuilder> builders) throws IOException { // Accumulate and check the builders final int numBuilders = builders.size(); List<Process> processes = new ArrayList<>(numBuilders);
< prev index next >