Uses of Interface
io.smallrye.common.process.ProcessBuilder.Input
-
Uses of ProcessBuilder.Input in io.smallrye.common.process
Methods in io.smallrye.common.process that return ProcessBuilder.InputModifier and TypeMethodDescriptionSet the character set to use for input handling.ProcessBuilder.Input.empty()Instruct the builder to provide no input to the process being built.default ProcessBuilder.Input<O> ProcessBuilder.Input.fromString(String string) Use the given string as the input for the process being built.default ProcessBuilder.Input<O> ProcessBuilder.Input.fromStrings(Collection<?> strings) Use the given strings as the input for the process being built.ProcessBuilder.Input.inherited()Instruct the builder to inherit the input of the current process into the process being built.ProcessBuilder.input()Configure the input handling of the process.default ProcessBuilder.Input<O> ProcessBuilder.Input.nativeCharset()Instruct the builder to use the native character set for input handling.ProcessBuilder.Input.produceBytesWith(ExceptionConsumer<OutputStream, IOException> consumer) Instruct the builder to produce the process input using the given stream consumer.ProcessBuilder.Input.produceWith(ExceptionConsumer<Writer, IOException> consumer) Instruct the builder to produce the process input using the given writer consumer.default ProcessBuilder.Input<O> ProcessBuilder.Input.transferFrom(InputStream stream) Instruct the builder to transfer the given stream's contents to the input of the process.default ProcessBuilder.Input<O> ProcessBuilder.Input.transferFrom(Reader reader) Instruct the builder to transfer the given reader's contents to the input of the process.ProcessBuilder.Input.transferFrom(Path path) Instruct the builder to transfer the entire contents of the file at the given path to the input of the process.