Packages

object ProcessInput

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProcessInput
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class FromStream(stream: ZStream[Any, CommandError, Byte], flushChunksEagerly: Boolean) extends ProcessInput with Product with Serializable

Value Members

  1. def fromByteArray(bytes: Array[Byte]): ProcessInput

    Returns a ProcessInput from an array of bytes.

  2. def fromFile(file: File, chunkSize: Int = ZStream.DefaultChunkSize): ProcessInput

    Returns a ProcessInput from a file.

  3. def fromPath(path: Path, chunkSize: Int = ZStream.DefaultChunkSize): ProcessInput

    Returns a ProcessInput from a path to a file.

  4. def fromQueue(queue: Queue[Chunk[Byte]]): ProcessInput

    Returns a ProcessInput from a queue of bytes to send to the process in a controlled manner.

  5. def fromStream(stream: ZStream[Any, CommandError, Byte], flushChunksEagerly: Boolean = false): ProcessInput

    Returns a ProcessInput from a stream of bytes.

    Returns a ProcessInput from a stream of bytes.

    You may want to set flushChunksEagerly to true when doing back-and-forth communication with a process such as interacting with a repl (flushing the command to send so that you can receive a response immediately).

  6. def fromString(text: String, charset: Charset): ProcessInput

    Returns a ProcessInput from a String with the given charset.

  7. def fromUTF8String(text: String): ProcessInput

    Returns a ProcessInput from a UTF-8 String.

  8. case object Inherit extends ProcessInput with Product with Serializable
  9. case object Pipe extends ProcessInput with Product with Serializable