Object

akka.http.scaladsl

Http

Related Doc: package scaladsl

Permalink

object Http extends ExtensionId[HttpExt] with ExtensionIdProvider

Source
Http.scala
Linear Supertypes
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]

    Permalink

    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

    Permalink

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

  3. final case class IncomingConnection(localAddress: InetSocketAddress, remoteAddress: InetSocketAddress, flow: Flow[HttpResponse, HttpRequest, NotUsed]) extends Product with Serializable

    Permalink

    Represents one accepted incoming HTTP connection.

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

    Permalink

    Represents a prospective outgoing HTTP connection.

  5. final case class ServerBinding(localAddress: InetSocketAddress)(unbindAction: () ⇒ Future[Unit]) extends Product with Serializable

    Permalink

    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

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

    Permalink

    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
                   +------+
  7. type WebSocketClientLayer = BidiFlow[Message, SslTlsOutbound, SslTlsInbound, Message, Future[WebSocketUpgradeResponse]]

    Permalink

    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

    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. def apply()(implicit system: ActorSystem): HttpExt

    Permalink
  5. def apply(system: ActorSystem): HttpExt

    Permalink
    Definition Classes
    ExtensionId
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createExtension(system: ExtendedActorSystem): HttpExt

    Permalink
    Definition Classes
    Http → ExtensionId
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. final def equals(other: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def get(system: ActorSystem): HttpExt

    Permalink
    Definition Classes
    ExtensionId
  13. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  16. def lookup(): Http.type

    Permalink
    Definition Classes
    Http → ExtensionIdProvider
  17. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

Inherited from ExtensionIdProvider

Inherited from ExtensionId[HttpExt]

Inherited from AnyRef

Inherited from Any

Ungrouped