Package

org.http4s.blaze

pipeline

Permalink

package pipeline

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Head[O] extends Stage

    Permalink
  2. trait HeadStage[O] extends Head[O]

    Permalink
  3. final class LeafBuilder[I] extends AnyRef

    Permalink

    By requiring a LeafBuilder, you are ensuring that the pipeline is capped with a TailStage as the only way to get a LeafBuilder if by capping with a TailStage or getting a new LeafBuilder from a TailStage

    By requiring a LeafBuilder, you are ensuring that the pipeline is capped with a TailStage as the only way to get a LeafBuilder if by capping with a TailStage or getting a new LeafBuilder from a TailStage

    I

    type the pipeline will read and write

  4. trait MidStage[I, O] extends Tail[I] with Head[O]

    Permalink
  5. sealed trait Stage extends AnyRef

    Permalink
  6. sealed trait Tail[I] extends Stage

    Permalink
  7. trait TailStage[I] extends Tail[I]

    Permalink

    The three fundamental stage types

  8. final class TrunkBuilder[I1, O] extends AnyRef

    Permalink

    Facilitates starting a pipeline from a MidStage.

    Facilitates starting a pipeline from a MidStage. Can be appended and prepended to build up the pipeline

Value Members

  1. object Command

    Permalink
  2. object LeafBuilder

    Permalink
  3. object TrunkBuilder

    Permalink
  4. package stages

    Permalink

Ungrouped