Trait

org.http4s.blaze.http

BodyWriter

Related Doc: package http

Permalink

trait BodyWriter extends AnyRef

Output pipe for writing http responses

This is, more or less, an asynchronous OutputStream

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

Type Members

  1. abstract type Finished

    Permalink

    Type of value returned upon closing of the BodyWriter

    Type of value returned upon closing of the BodyWriter

    This type is used to enforce that the writer is closed when writing a HTTP response using the server.

Abstract Value Members

  1. abstract def close(): Future[Finished]

    Permalink

    Close the writer and flush any buffers

    Close the writer and flush any buffers

    returns

    a Future[Finished] which will resolve once the close process has completed.

  2. abstract def flush(): Future[Unit]

    Permalink

    Flush any bytes to the pipeline

    Flush any bytes to the pipeline

    This may be a no-op depending on the nature of theBodyWriter.

    returns

    a Future[Unit] that resolves when any buffers have been flushed.

  3. abstract def write(buffer: ByteBuffer): Future[Unit]

    Permalink

    Write a message to the pipeline

    Write a message to the pipeline

    Write an entire message will be written to the channel. This buffer might not be written to the wire and instead buffered. Buffers can be manually flushed with the flush method or by closing the BodyWriter.

    buffer

    ByteBuffer to write to the channel

    returns

    a Future[Unit] which resolves upon completion. Errors are handled through the Future.

Concrete 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. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped