class PekkoHttpServer extends Server

Starts a Play server using Pekko HTTP.

Source
PekkoHttpServer.scala
Linear Supertypes
Server, ReloadableServer, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PekkoHttpServer
  2. Server
  3. ReloadableServer
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PekkoHttpServer(context: Context)

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 applicationProvider: ApplicationProvider
    Definition Classes
    PekkoHttpServerServer
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. def createClientAuth(): Option[TLSClientAuth]

    Creates PekkoHttp TLSClientAuth

    Creates PekkoHttp TLSClientAuth

    Attributes
    protected
  8. def createParserSettings(): ParserSettings

    Called by Play when creating its Pekko HTTP parser settings.

    Called by Play when creating its Pekko HTTP parser settings. Result stored in parserSettings.

    Attributes
    protected
  9. def createPekkoHttpConfig(): Config

    Creates the configuration used to initialize the Pekko HTTP subsystem.

    Creates the configuration used to initialize the Pekko HTTP subsystem. By default this uses the ActorSystem's configuration, with an additional setting patched in to enable or disable HTTP/2.

    Attributes
    protected
  10. def createServerSettings(port: Int, connectionContext: ConnectionContext, secure: Boolean): ServerSettings

    Create Pekko HTTP settings for a given port binding.

    Create Pekko HTTP settings for a given port binding.

    Called by Play when binding a handler to a server port. Will be called once per port. Called by the createServerBinding() method.

    Attributes
    protected
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. def httpPort: Option[Int]

    Returns the HTTP port of the server.

    Returns the HTTP port of the server.

    This is useful when the port number has been automatically selected (by setting a port number of 0).

    returns

    The HTTP port the server is bound to, if the HTTP connector is enabled.

    Definition Classes
    Server
  16. def httpsPort: Option[Int]

    Returns the HTTPS port of the server.

    Returns the HTTPS port of the server.

    This is useful when the port number has been automatically selected (by setting a port number of 0).

    returns

    The HTTPS port the server is bound to, if the HTTPS connector is enabled.

    Definition Classes
    Server
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. lazy val mainAddress: InetSocketAddress

    Get the address of the server.

    Get the address of the server.

    returns

    The address of the server.

    Definition Classes
    PekkoHttpServerServer
  19. def mode: api.Mode
    Definition Classes
    PekkoHttpServerServer
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. val parserSettings: ParserSettings

    Play's parser settings for Pekko HTTP.

    Play's parser settings for Pekko HTTP. Initialized by a call to createParserSettings().

    Attributes
    protected
  24. val pekkoHttpConfig: Config

    Play's configuration for the Pekko HTTP server.

    Play's configuration for the Pekko HTTP server. Initialized by a call to createPekkoHttpConfig().

    Note that the rest of the ActorSystem outside Pekko HTTP is initialized by the configuration in context.config.

    Attributes
    protected
  25. def reload(): Unit
    Definition Classes
    Server → ReloadableServer
  26. def remoteAddressOfRequest(req: HttpRequest): InetSocketAddress
  27. val serverEndpoints: ServerEndpoints

    Endpoints information for this server.

    Endpoints information for this server.

    Definition Classes
    PekkoHttpServerServer
  28. def stop(): Unit
    Definition Classes
    PekkoHttpServerServer → ReloadableServer
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Server

Inherited from ReloadableServer

Inherited from AnyRef

Inherited from Any

Ungrouped