Uses of Class
org.qbicc.machine.tool.process.OutputDestination
Packages that use OutputDestination
-
Uses of OutputDestination in org.qbicc.machine.tool.process
Methods in org.qbicc.machine.tool.process that return OutputDestinationModifier and TypeMethodDescriptionstatic OutputDestinationOutputDestination.discarding()An output destination that efficiently discards the input.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionBiConsumer<T, InputStream, IOException> consumer, T param) An output destination that calls the given consumer with an input stream.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionBiConsumer<T, Reader, IOException> consumer, T param, Charset charset) An output destination that calls the given consumer with a reader.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionConsumer<InputStream, IOException> consumer) An output destination that calls the given consumer with an input stream.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionConsumer<Reader, IOException> consumer, Charset charset) An output destination that calls the given consumer with a reader.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, OutputStream, IOException> supplier, T param) An output destination that writes to an output stream provided by the given supplier.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, Appendable, IOException> supplier, T param, Charset charset) An output destination that writes to an appendable provided by the given supplier.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, ProcessBuilder, IOException> supplier, T param, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, ProcessBuilder, IOException> supplier, T param, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<OutputStream, IOException> supplier) An output destination that writes to an output stream provided by the given supplier.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<Appendable, IOException> supplier, Charset charset) An output destination that writes to an appendable provided by the given supplier.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<ProcessBuilder, IOException> supplier, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<ProcessBuilder, IOException> supplier, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(Appendable appendable) An output destination that writes to the givenAppendable.static OutputDestinationOutputDestination.of(Appendable appendable, Charset charset) An output destination that writes to the givenAppendable.static OutputDestinationOutputDestination.of(ProcessBuilder processBuilder, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(ProcessBuilder processBuilder, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.static OutputDestinationAn output destination that writes to a file on the filesystem.Methods in org.qbicc.machine.tool.process with parameters of type OutputDestinationModifier and TypeMethodDescriptionstatic <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, ProcessBuilder, IOException> supplier, T param, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static <T> OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionFunction<T, ProcessBuilder, IOException> supplier, T param, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<ProcessBuilder, IOException> supplier, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(io.smallrye.common.function.ExceptionSupplier<ProcessBuilder, IOException> supplier, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(ProcessBuilder processBuilder, OutputDestination errorDest, OutputDestination outputDest) An output destination that pipes into a process.static OutputDestinationOutputDestination.of(ProcessBuilder processBuilder, OutputDestination errorDest, OutputDestination outputDest, io.smallrye.common.function.ExceptionConsumer<Process, IOException> checker) An output destination that pipes into a process.abstract voidInputSource.transferTo(OutputDestination destination) Execute a transfer of this source to the given destination.