p

play.core

server

package server

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class RealServerProcess extends ServerProcess

    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.

  2. trait Server extends ReloadableServer

    Provides generic server behaviour for Play applications.

  3. trait ServerComponents extends AnyRef

    Components to create a Server instance.

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

    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.

  5. class ServerListenException extends Exception

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

  6. trait ServerProcess extends AnyRef

    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.

  7. trait ServerProvider extends AnyRef

    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.

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

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

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

  9. trait WebSocketable extends AnyRef

Value Members

  1. object DevServerStart

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

  2. object ProdServerStart

    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.

  3. object Server

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

  4. object ServerConfig extends Serializable
  5. object ServerProvider

Ungrouped