org.http4s.blaze.http

BodyWriter

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
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Finished

    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]

    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]

    Flush any bytes to the pipeline

    Flush any bytes to the pipeline

    This may be a NOOP 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]

    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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped