Packages

  • package root
    Definition Classes
    root
  • package fs2
    Definition Classes
    root
  • package internal
    Definition Classes
    fs2
  • package io

    Provides various ways to work with streams that perform IO.

    Provides various ways to work with streams that perform IO.

    Definition Classes
    fs2
  • package file
  • package net

    Provides support for doing network I/O -- TCP, UDP, and TLS.

package io

Provides various ways to work with streams that perform IO.

Source
io.scala
Linear Supertypes
ioplatform, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. io
  2. ioplatform
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package file
  2. package net

    Provides support for doing network I/O -- TCP, UDP, and TLS.

Value Members

  1. def readInputStream[F[_]](fis: F[InputStream], chunkSize: Int, closeAfterUse: Boolean = true)(implicit F: Sync[F]): Stream[F, Byte]

    Reads all bytes from the specified InputStream with a buffer size of chunkSize.

    Reads all bytes from the specified InputStream with a buffer size of chunkSize. Set closeAfterUse to false if the InputStream should not be closed after use.

  2. def stdin[F[_]](bufSize: Int)(implicit arg0: Sync[F]): Stream[F, Byte]

    Stream of bytes read asynchronously from standard input.

  3. def stdinUtf8[F[_]](bufSize: Int)(implicit arg0: Sync[F]): Stream[F, String]

    Stream of String read asynchronously from standard input decoded in UTF-8.

  4. def stdout[F[_]](implicit arg0: Sync[F]): Pipe[F, Byte, INothing]

    Pipe of bytes that writes emitted values to standard output asynchronously.

  5. def stdoutLines[F[_], O](charset: Charset = utf8Charset)(implicit arg0: Sync[F], arg1: Show[O]): Pipe[F, O, INothing]

    Writes this stream to standard output asynchronously, converting each element to a sequence of bytes via Show and the given Charset.

    Writes this stream to standard output asynchronously, converting each element to a sequence of bytes via Show and the given Charset.

    Each write operation is performed on the supplied execution context. Writes are blocking so the execution context should be configured appropriately.

  6. def unsafeReadInputStream[F[_]](fis: F[InputStream], chunkSize: Int, closeAfterUse: Boolean = true)(implicit F: Sync[F]): Stream[F, Byte]

    Reads all bytes from the specified InputStream with a buffer size of chunkSize.

    Reads all bytes from the specified InputStream with a buffer size of chunkSize. Set closeAfterUse to false if the InputStream should not be closed after use.

    Recycles an underlying input buffer for performance. It is safe to call this as long as whatever consumes this Stream does not store the Chunk returned or pipe it to a combinator that does (e.g. buffer). Use readInputStream for a safe version.

  7. def writeOutputStream[F[_]](fos: F[OutputStream], closeAfterUse: Boolean = true)(implicit F: Sync[F]): Pipe[F, Byte, INothing]

    Writes all bytes to the specified OutputStream.

    Writes all bytes to the specified OutputStream. Set closeAfterUse to false if the OutputStream should not be closed after use.

    Each write operation is performed on the supplied execution context. Writes are blocking so the execution context should be configured appropriately.

Inherited from ioplatform

Inherited from AnyRef

Inherited from Any

Ungrouped