Object

akka.http.scaladsl

Http

Related Doc: package scaladsl

Permalink

object Http extends ExtensionId[HttpExt] with ExtensionIdProvider

Source
Http.scala
Linear Supertypes
Content Hierarchy
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. sealed abstract class HttpConnectionTerminated extends HttpTerminated

    Permalink
  4. sealed abstract class HttpServerTerminated extends HttpTerminated

    Permalink
  5. sealed abstract class HttpTerminated extends javadsl.HttpTerminated

    Permalink

    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

    Permalink

    Represents one accepted incoming HTTP connection.

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

    Permalink

    Represents a prospective outgoing HTTP connection.

  8. final case class ServerBinding(localAddress: InetSocketAddress)(unbindAction: () ⇒ Future[Unit], terminateAction: (FiniteDuration) ⇒ Future[HttpTerminated]) 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

  9. 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
                   +------+
  10. 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. object HttpConnectionTerminated extends HttpConnectionTerminated

    Permalink
  5. object HttpServerTerminated extends HttpServerTerminated

    Permalink
  6. def apply()(implicit system: ActorSystem): HttpExt

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. 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