ServerProvider

play.core.server.ServerProvider
See theServerProvider companion object

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.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def createServer(context: Context): Server

Concrete methods

final def createServer(config: ServerConfig, app: Application): Server

Create a server for a given application.

Create a server for a given application.

Attributes