Packages

object Http extends ExtensionId[HttpExt] with ExtensionIdProvider

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Http
  2. ExtensionIdProvider
  3. ExtensionId
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ClientLayer = BidiFlow[HttpRequest, SslTlsOutbound, SslTlsInbound, HttpResponse, NotUsed]

    The type of the client-side HTTP layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP client.

    The type of the client-side HTTP layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP client.

                   +------+
    HttpRequest  ~>|      |~> SslTlsOutbound
                   | bidi |
    HttpResponse <~|      |<~ SslTlsInbound
                   +------+
  2. final case class HostConnectionPool extends Product with Serializable

    Represents a connection pool to a specific target host and pool configuration.

  3. sealed abstract class HttpConnectionTerminated extends HttpTerminated
  4. sealed abstract class HttpServerTerminated extends HttpTerminated
  5. sealed abstract class HttpTerminated extends javadsl.HttpTerminated

    Type used to carry meaningful information when server termination has completed successfully.

    Type used to carry meaningful information when server termination has completed successfully.

    Annotations
    @DoNotInherit()
  6. final case class IncomingConnection(localAddress: InetSocketAddress, remoteAddress: InetSocketAddress, _flow: Flow[HttpResponse, HttpRequest, ServerTerminator]) extends Product with Serializable

    Represents one accepted incoming HTTP connection.

  7. final case class OutgoingConnection(localAddress: InetSocketAddress, remoteAddress: InetSocketAddress) extends Product with Serializable

    Represents a prospective outgoing HTTP connection.

  8. final case class ServerBinding(localAddress: InetSocketAddress)(unbindAction: () ⇒ Future[Unit], terminateAction: (FiniteDuration) ⇒ Future[HttpTerminated]) extends Product with Serializable

    Represents a prospective HTTP server binding.

    Represents a prospective HTTP server binding.

    localAddress

    The local address of the endpoint bound by the materialization of the connections akka.stream.scaladsl.Source

  9. type ServerLayer = BidiFlow[HttpResponse, SslTlsOutbound, SslTlsInbound, HttpRequest, NotUsed]

    The type of the server-side HTTP layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP server.

    The type of the server-side HTTP layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP server.

                   +------+
    HttpResponse ~>|      |~> SslTlsOutbound
                   | bidi |
    HttpRequest  <~|      |<~ SslTlsInbound
                   +------+
  10. type WebSocketClientLayer = BidiFlow[Message, SslTlsOutbound, SslTlsInbound, Message, Future[WebSocketUpgradeResponse]]

    The type of the client-side WebSocket layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP client.

    The type of the client-side WebSocket layer as a stand-alone BidiFlow that can be put atop the TCP layer to form an HTTP client.

                   +------+
    ws.Message   ~>|      |~> SslTlsOutbound
                   | bidi |
    ws.Message   <~|      |<~ SslTlsInbound
                   +------+

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply()(implicit system: ActorSystem): HttpExt
  5. def apply(system: ClassicActorSystemProvider): HttpExt
    Definition Classes
    ExtensionId
  6. def apply(system: ActorSystem): HttpExt
    Definition Classes
    ExtensionId
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def createExtension(system: ExtendedActorSystem): HttpExt
    Definition Classes
    Http → ExtensionId
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. final def equals(other: Any): Boolean
    Definition Classes
    ExtensionId → AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def get(system: ClassicActorSystemProvider): HttpExt
    Definition Classes
    ExtensionId
  14. def get(system: ActorSystem): HttpExt
    Definition Classes
    ExtensionId
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def hashCode(): Int
    Definition Classes
    ExtensionId → AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def lookup(): Http.type
    Definition Classes
    Http → ExtensionIdProvider
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. object HttpConnectionTerminated extends HttpConnectionTerminated
  28. object HttpServerTerminated extends HttpServerTerminated

Inherited from ExtensionIdProvider

Inherited from ExtensionId[HttpExt]

Inherited from AnyRef

Inherited from Any

Ungrouped