Class/Object

com.twitter.io

InputStreamReader

Related Docs: object InputStreamReader | package io

Permalink

class InputStreamReader extends Reader with Closable with CloseAwaitably

Provides the Reader API for an InputStream.

The given InputStream will be closed when Reader.read reaches the EOF or a call to discard() or close().

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InputStreamReader
  2. CloseAwaitably
  3. CloseAwaitably0
  4. Awaitable
  5. Closable
  6. Reader
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InputStreamReader(inputStream: InputStream, maxBufferSize: Int)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(deadline: Time): Future[Unit]

    Permalink

    Discards this Reader and closes the underlying InputStream

    Discards this Reader and closes the underlying InputStream

    Definition Classes
    InputStreamReaderClosable
  7. def close(after: Duration): Future[Unit]

    Permalink

    Close the resource with the given timeout.

    Close the resource with the given timeout. This timeout is advisory, giving the callee some leeway, for example to drain clients or finish up other tasks.

    Definition Classes
    Closable
  8. final def close(): Future[Unit]

    Permalink

    Close the resource.

    Close the resource. The returned Future is completed when the resource has been fully relinquished.

    Definition Classes
    Closable
  9. def closeAwaitably(f: ⇒ Future[Unit]): Future[Unit]

    Permalink

    closeAwaitably is intended to be used as a wrapper for close.

    closeAwaitably is intended to be used as a wrapper for close. The underlying f will be called at most once.

    Attributes
    protected
    Definition Classes
    CloseAwaitably0
  10. def discard(): Unit

    Permalink

    Discard this reader: its output is no longer required.

    Discard this reader: its output is no longer required.

    This closes the underlying InputStream.

    Definition Classes
    InputStreamReaderReader
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def isReady(implicit permit: CanAwait): Boolean

    Permalink

    Is this Awaitable ready? In other words: would calling Awaitable.ready block?

    Is this Awaitable ready? In other words: would calling Awaitable.ready block?

    Definition Classes
    CloseAwaitably0 → Awaitable
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def read(n: Int): Future[Option[Buf]]

    Permalink

    Asynchronously read at most min(n, maxBufferSize) bytes from the InputStream.

    Asynchronously read at most min(n, maxBufferSize) bytes from the InputStream. The returned Future represents the results of the read operation. Any failure indicates an error; an empty buffer indicates that the stream has completed.

    Definition Classes
    InputStreamReaderReader
    Note

    the underlying InputStream is closed on read of EOF.

  22. def ready(timeout: Duration)(implicit permit: CanAwait): InputStreamReader.this.type

    Permalink

    Support for Await.ready.

    Support for Await.ready. The use of the implicit permit is an access control mechanism: only Await.ready may call this method.

    Definition Classes
    CloseAwaitably0 → Awaitable
  23. def result(timeout: Duration)(implicit permit: CanAwait): Unit

    Permalink

    Support for Await.result.

    Support for Await.result. The use of the implicit permit is an access control mechanism: only Await.result may call this method.

    Definition Classes
    CloseAwaitably0 → Awaitable
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CloseAwaitably

Inherited from CloseAwaitably0[Unit]

Inherited from Awaitable[Unit]

Inherited from Closable

Inherited from Reader

Inherited from AnyRef

Inherited from Any

Ungrouped