Package

play.core

server

Permalink

package server

Visibility
  1. Public
  2. All

Type Members

  1. class AkkaHttpServer extends Server

    Permalink

    Starts a Play server using Akka HTTP.

  2. trait AkkaHttpServerComponents extends ServerComponents

    Permalink

    Components for building a simple Akka HTTP Server.

  3. class AkkaHttpServerProvider extends ServerProvider

    Permalink

    Knows how to create an AkkaHttpServer.

  4. class NettyServer extends Server

    Permalink

    creates a Server implementation based Netty

  5. trait NettyServerComponents extends ServerComponents

    Permalink

    Cake for building a simple Netty server.

  6. class NettyServerProvider extends ServerProvider

    Permalink

    The Netty server provider

  7. sealed trait NettyTransport extends AnyRef

    Permalink
  8. class RealServerProcess extends ServerProcess

    Permalink

    A ServerProcess that wraps a real JVM process.

    A ServerProcess that wraps a real JVM process. Calls have a real effect on the JVM, e.g. exit calls System.exit.

  9. trait Server extends ReloadableServer

    Permalink

    Provides generic server behaviour for Play applications.

  10. trait ServerComponents extends AnyRef

    Permalink

    Components to create a Server instance.

  11. case class ServerConfig(rootDir: File, port: Option[Int], sslPort: Option[Int], address: String, mode: api.Mode, properties: Properties, configuration: api.Configuration) extends Product with Serializable

    Permalink

    Common configuration for servers such as NettyServer.

    Common configuration for servers such as NettyServer.

    rootDir

    The root directory of the server. Used to find default locations of files, log directories, etc.

    port

    The HTTP port to use.

    sslPort

    The HTTPS port to use.

    address

    The socket address to bind to.

    mode

    The run mode: dev, test or prod.

  12. class ServerListenException extends Exception

    Permalink

    This exception is thrown when the server is unable to listen on a port

  13. trait ServerProcess extends AnyRef

    Permalink

    Abstracts a JVM process so it can be mocked for testing or to isolate pseudo-processes within a VM.

    Abstracts a JVM process so it can be mocked for testing or to isolate pseudo-processes within a VM. Code using this class should use the methods in this class instead of methods like System.getProperties(), System.exit(), etc.

  14. trait ServerProvider extends AnyRef

    Permalink

    An object that knows how to obtain a server.

    An object that knows how to obtain a server. Instantiating a ServerProvider object should be fast and side-effect free. Any actual work that a ServerProvider needs to do should be delayed until the createServer method is called.

  15. final case class ServerStartException(message: String, cause: Option[Throwable] = None) extends Exception with Product with Serializable

    Permalink

    Indicates an issue with starting a server, e.g.

    Indicates an issue with starting a server, e.g. a problem reading its configuration.

  16. trait WebSocketable extends AnyRef

    Permalink

Value Members

  1. object AkkaHttpServer extends ServerFromRouter

    Permalink

    Creates an AkkaHttpServer from the given router:

    Creates an AkkaHttpServer from the given router:

    val server = AkkaHttpServer.fromRouter(ServerConfig(port = Some(9002))) {
      case GET(p"/") => Action {
        Results.Ok("Hello")
      }
    }

    Or from a given router using BuiltInComponents:

    val server = AkkaHttpServer.fromRouterWithComponents(ServerConfig(port = Some(9002))) { components =>
      import play.api.mvc.Results._
      import components.{ defaultActionBuilder => Action }
      {
        case GET(p"/") => Action {
          Ok("Hello")
        }
      }
    }

    Use this together with Sird Router.

  2. object DevServerStart

    Permalink

    Used to start servers in 'dev' mode, a mode where the application is reloaded whenever its source changes.

  3. object Jdk extends NettyTransport with Product with Serializable

    Permalink
  4. object Native extends NettyTransport with Product with Serializable

    Permalink
  5. object NettyServer extends ServerFromRouter

    Permalink

    Create a Netty server from the given router and server config:

    Create a Netty server from the given router and server config:

    val server = Netty.fromRouter(ServerConfig(port = Some(9002))) {
      case GET(p"/") => Action {
        Results.Ok("Hello")
      }
    }

    Or from a given router using BuiltInComponents:

    val server = NettyServer.fromRouterWithComponents(ServerConfig(port = Some(9002))) { components =>
      import play.api.mvc.Results._
      import components.{ defaultActionBuilder => Action }
      {
        case GET(p"/") => Action {
          Ok("Hello")
        }
      }
    }

    Use this together with Sird Router.

  6. object ProdServerStart

    Permalink

    Used to start servers in 'prod' mode, the mode that is used in production.

    Used to start servers in 'prod' mode, the mode that is used in production. The application is loaded and started immediately.

  7. object Server

    Permalink

    Utilities for creating a server that runs around a block of code.

  8. object ServerConfig extends Serializable

    Permalink
  9. object ServerProvider

    Permalink
  10. package akkahttp

    Permalink
  11. package common

    Permalink
  12. package netty

    Permalink
  13. package ssl

    Permalink

Ungrouped