Sha256: 04f7cf9875c9e46472c5a97ab82c3851675d71f62bba73a62b5140b7effb929b
Contents?: true
Size: 628 Bytes
Versions: 7
Compression:
Stored size: 628 Bytes
Contents
package com.twitter.birdname import com.twitter.admin.config._ import com.twitter.admin._ class BirdNameServiceConfig extends ServerConfig[BirdNameService] { val thriftPort = 1337 admin.httpPort = Some(9999) // TODO: Please implement application-specific config. /** * Used if you need to integrate synchronous clients, e.g. querulous. If you * are using an async client like cassie, you can ignore this. * * val threadPoolSize = 10 */ /** * This is a factory method that will construct the related service. */ def apply(env: RuntimeEnvironment) = new BirdNameServiceImpl(this) }
Version data entries
7 entries across 7 versions & 1 rubygems