Packages

package sse

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait EventStreamUnmarshalling extends AnyRef

    Mixing in this trait lets a HttpEntity with a text/event-stream media type be unmarshalled to a source of ServerSentEvents.

    Mixing in this trait lets a HttpEntity with a text/event-stream media type be unmarshalled to a source of ServerSentEvents.

    The maximum size for parsing server-sent events is 8KiB by default and can be customized by configuring akka.http.sse.max-event-size. The maximum size for parsing lines of a server-sent event is 4KiB by default and can be customized by configuring akka.http.sse.max-line-size.

    Annotations
    @ApiMayChange()
  2. class LineParserBenchmark extends AnyRef
    Annotations
    @State() @OutputTimeUnit() @BenchmarkMode()

Value Members

  1. object EventStreamParser

    Flow that converts raw byte string input into ServerSentEvents.

    Flow that converts raw byte string input into ServerSentEvents.

    This API is made for use in non-akka-http clients, like Play's WSClient.

    Annotations
    @ApiMayChange()
  2. object EventStreamUnmarshalling extends EventStreamUnmarshalling

    Importing EventStreamUnmarshalling.fromEventsStream lets an HttpEntity with a text/event-stream media type be unmarshalled to a source of ServerSentEvents.

    Importing EventStreamUnmarshalling.fromEventsStream lets an HttpEntity with a text/event-stream media type be unmarshalled to a source of ServerSentEvents.

    The maximum size for parsing server-sent events is 8KiB. The maximum size for parsing lines of a server-sent event is 4KiB. If you need to customize any of these, set the akka.http.sse.max-event-size and akka.http.sse.max-line-size properties respectively.

    Annotations
    @ApiMayChange()

Ungrouped