Class

com.twitter.finatra.thrift

AbstractThriftServerTrait

Related Doc: package thrift

Permalink

abstract class AbstractThriftServerTrait extends AbstractTwitterServer with ThriftServerTrait

A basic ThriftServer implemented by a

com.twitter.finagle.Service<byte[], byte[]>

.

com.twitter.finagle.Service<byte[], byte[]> }}}

Note

Scala users are encouraged to use ThriftServerTrait instead.

Linear Supertypes
ThriftServerTrait, AbstractTwitterServer, TwitterServer, Warmup, Ports, DeprecatedLogging, Logging, TwitterServer, Lifecycle, AdminHttpServer, Hooks, DtabFlags, Linters, Stats, Slf4jBridge, AbstractApp, App, Logging, Logging, App, Lifecycle, CloseOnceAwaitably, CloseOnceAwaitably0[Unit], Awaitable[Unit], ClosableOnce, CloseOnce, Closable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractThriftServerTrait
  2. ThriftServerTrait
  3. AbstractTwitterServer
  4. TwitterServer
  5. Warmup
  6. Ports
  7. DeprecatedLogging
  8. Logging
  9. TwitterServer
  10. Lifecycle
  11. AdminHttpServer
  12. Hooks
  13. DtabFlags
  14. Linters
  15. Stats
  16. Slf4jBridge
  17. AbstractApp
  18. App
  19. Logging
  20. Logging
  21. App
  22. Lifecycle
  23. CloseOnceAwaitably
  24. CloseOnceAwaitably0
  25. Awaitable
  26. ClosableOnce
  27. CloseOnce
  28. Closable
  29. AnyRef
  30. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractThriftServerTrait()

    Permalink

Abstract Value Members

  1. abstract def thriftService: Service[Array[Byte], Array[Byte]]

    Permalink

    The Finagle Service[Array[Byte], Array[Byte]] to serve on the configured ListeningServer.

    The Finagle Service[Array[Byte], Array[Byte]] to serve on the configured ListeningServer.

    Users must override with an implementation to serve a Service[Array[Byte], Array[Byte]].

    Attributes
    protected
    Definition Classes
    ThriftServerTrait

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final val MinGrace: Duration

    Permalink
    Definition Classes
    App
  5. def addAdminRoute(route: Route): Unit

    Permalink
    Definition Classes
    AdminHttpServer
  6. def addAdminRoutes(newRoutes: Seq[Route]): Unit

    Permalink
    Definition Classes
    AdminHttpServer
  7. def addDtabs(): Unit

    Permalink
    Definition Classes
    DtabFlags
  8. def addFrameworkModule(module: Module): Unit

    Permalink
    Attributes
    protected[com.twitter]
    Definition Classes
    App
  9. def addFrameworkModules(modules: Module*): Unit

    Permalink
    Attributes
    protected[com.twitter]
    Definition Classes
    App
  10. def addFrameworkOverrideModules(modules: Module*): Unit

    Permalink
    Attributes
    protected[com.twitter.inject]
    Definition Classes
    App
  11. def adminBoundAddress: InetSocketAddress

    Permalink
    Definition Classes
    AdminHttpServer
  12. var adminHttpServer: ListeningServer

    Permalink
    Attributes
    protected
    Definition Classes
    AdminHttpServer
  13. val adminPort: Flag[InetSocketAddress]

    Permalink
    Definition Classes
    AdminHttpServer
  14. def afterPostWarmup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
    Annotations
    @Lifecycle()
  15. def allowUndefinedFlags: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    App
  16. val appendFlag: Flag[Boolean]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  17. def args: Array[String]

    Permalink
    Definition Classes
    App
  18. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  19. val asyncFlag: Flag[Boolean]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  20. val asyncMaxSizeFlag: Flag[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  21. def await(awaitables: Awaitable[_]*): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  22. def await[T <: Awaitable[_]](awaitable: T): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  23. def beforePostWarmup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
    Annotations
    @Lifecycle()
  24. final def boundAddress: Option[InetSocketAddress]

    Permalink

    The address to which the underlying ListeningServer is bound

    The address to which the underlying ListeningServer is bound

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
    Note

    this returns None before the postWarmup() lifecycle phase is done or if the server fails to start up.

  25. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def close(deadline: Time): Future[Unit]

    Permalink
    Definition Classes
    CloseOnce
  27. def close(after: Duration): Future[Unit]

    Permalink
    Definition Classes
    Closable
  28. final def close(): Future[Unit]

    Permalink
    Definition Classes
    Closable
  29. final def closeFuture: Future[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    CloseOnce
  30. final def closeOnExit(closable: Closable): Unit

    Permalink
    Definition Classes
    App
  31. final def closeOnExitLast(closable: Closable): Unit

    Permalink
    Definition Classes
    App
  32. def closeOnce(deadline: Time): Future[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    App → CloseOnce
  33. def configureAdminHttpServer(server: Server): Server

    Permalink
    Attributes
    protected
    Definition Classes
    AdminHttpServer
  34. def configureLoggerFactories(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    DeprecatedLogging → Logging
  35. def configureThriftServer(server: Server): Server

    Permalink

    This method allows for further configuration of the thrift server for parameters not exposed by this trait or for overriding defaults provided herein, e.g.,

    This method allows for further configuration of the thrift server for parameters not exposed by this trait or for overriding defaults provided herein, e.g.,

    override def configureThriftServer(server: ThriftMux.Server): ThriftMux.Server = { server .withMaxReusableBufferSize(...) }

    server

    - the com.twitter.finagle.ThriftMux.Server to configure.

    returns

    a configured ThriftMux.Server.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
  36. final def createFlag[T](name: String, default: T, help: String, flaggable: Flaggable[T]): Flag[T]

    Permalink
    Definition Classes
    AbstractApp
  37. final def createMandatoryFlag[T](name: String, help: String, usage: String, flaggable: Flaggable[T]): Flag[T]

    Permalink
    Definition Classes
    AbstractApp
  38. def debug(marker: Marker, message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  39. def debug(message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  40. def debug(marker: Marker, message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  41. def debug(message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  42. def debugFutureResult[T](msg: String)(func: ⇒ Future[T]): Future[T]

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  43. def debugResult[T](message: ⇒ String)(fn: ⇒ T): T

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  44. def defaultAdminPort: Int

    Permalink
    Definition Classes
    AdminHttpServer
  45. def defaultAppend: Boolean

    Permalink
    Definition Classes
    Logging
  46. def defaultCloseGracePeriod: Duration

    Permalink
    Definition Classes
    App
  47. def defaultFormatter: Formatter

    Permalink
    Definition Classes
    Logging
  48. def defaultLogLevel: Level

    Permalink
    Definition Classes
    Logging
  49. def defaultOutput: String

    Permalink
    Definition Classes
    Logging
  50. def defaultRollPolicy: Policy

    Permalink
    Definition Classes
    Logging
  51. def defaultRotateCount: Int

    Permalink
    Definition Classes
    Logging
  52. def defaultThriftAnnouncement: String

    Permalink

    Default server announcement String used as the Flag default value for thriftAnnounceFlag.

    Default server announcement String used as the Flag default value for thriftAnnounceFlag. This can be overridden to provide a different default programmatically when a flag value cannot be passed. An empty String value is an indication to not perform any announcement of the server.

    In general, users should prefer setting the thriftAnnounceFlag Flag value.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
    See also

    String)

  53. def defaultThriftPort: String

    Permalink

    Default external Thrift port used as the Flag default value for thriftPortFlag.

    Default external Thrift port used as the Flag default value for thriftPortFlag. This can be overridden to provide a different default programmatically when a flag value cannot be passed. The format of this value is expected to be a String in the form of ":port".

    In general, users should prefer setting the thriftPortFlag Flag value.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
    See also

    com.twitter.finatra.thrift.ThriftServerTrait.thriftPortFlag

  54. def defaultThriftServerName: String

    Permalink

    Default server name for the external Thrift interface used as the Flag default value for thriftServerNameFlag.

    Default server name for the external Thrift interface used as the Flag default value for thriftServerNameFlag. This can be overridden to provide a different default programmatically when a flag value cannot be passed.

    In general, users should prefer setting the thriftServerNameFlag Flag value.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
    See also

    com.twitter.finatra.thrift.ThriftServerTrait.thriftServerNameFlag

  55. def defaultThriftShutdownTimeout: Duration

    Permalink

    Default shutdown timeout used as the Flag default value for thriftShutdownTimeoutFlag.

    Default shutdown timeout used as the Flag default value for thriftShutdownTimeoutFlag. This represents the deadline for the closing of this server which can be overridden to provide a different default programmatically when a flag value cannot be passed.

    In general, users should prefer setting the thriftShutdownTimeoutFlag Flag value.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
    Note

    the value is used to denote a delta "from now", that is this value is applied as: server.close(shutdownTimeoutDuration.fromNow())

    See also

    https://github.com/twitter/util/blob/b0a5d06269b9526b4408239ce1441b2a213dd0df/util-core/src/main/scala/com/twitter/util/Duration.scala#L436

    Time)

    com.twitter.finatra.thrift.ThriftServerTrait.thriftShutdownTimeoutFlag

  56. def disableAdminHttpServer: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    AdminHttpServer
  57. val dtabAddBaseFlag: Flag[Dtab]

    Permalink
    Definition Classes
    DtabFlags
  58. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  59. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  60. def error(marker: Marker, message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  61. def error(message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  62. def error(marker: Marker, message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  63. def error(message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  64. def errorResult[T](message: ⇒ String)(fn: ⇒ T): T

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  65. def exitOnError(reason: String, details: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  66. def exitOnError(reason: String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  67. def exitOnError(throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  68. def failfastOnFlagsNotParsed: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    App → App
  69. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  70. val flag: Flags

    Permalink
    Definition Classes
    App
  71. def frameworkConfigureServer(server: Server): Server

    Permalink
    Attributes
    protected[com.twitter.finatra]
    Definition Classes
    ThriftServerTrait
  72. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  73. val group: String

    Permalink
    Definition Classes
    Lifecycle
  74. def handle(clazz: Class[_ <: Handler]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  75. def handle[T <: Handler]()(implicit arg0: Manifest[T]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  76. def handlers: List[() ⇒ Handler]

    Permalink
    Definition Classes
    Logging
  77. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  78. def httpExternalPort: Option[Int]

    Permalink
    Definition Classes
    Ports
  79. def httpsExternalPort: Option[Int]

    Permalink
    Definition Classes
    Ports
  80. val inferClassNamesFlag: Flag[Boolean]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  81. def info(marker: Marker, message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  82. def info(message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  83. def info(marker: Marker, message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  84. def info(message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  85. def infoResult[T](message: ⇒ String)(fn: ⇒ T): T

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  86. final def init(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  87. def injector: Injector

    Permalink
    Definition Classes
    App
  88. final def isClosed: Boolean

    Permalink
    Definition Classes
    CloseOnce
  89. def isDebugEnabled(marker: Marker): Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  90. def isDebugEnabled: Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  91. def isErrorEnabled(marker: Marker): Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  92. def isErrorEnabled: Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  93. def isInfoEnabled(marker: Marker): Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  94. def isInfoEnabled: Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  95. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  96. def isReady(implicit permit: CanAwait): Boolean

    Permalink
    Definition Classes
    CloseOnceAwaitably0 → Awaitable
  97. def isTraceEnabled(marker: Marker): Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  98. def isTraceEnabled: Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  99. def isWarnEnabled(marker: Marker): Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  100. def isWarnEnabled: Boolean

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  101. def javaModules: Collection[Module]

    Permalink
    Attributes
    protected
    Definition Classes
    App
  102. def javaOverrideModules: Collection[Module]

    Permalink
    Attributes
    protected
    Definition Classes
    App
  103. val levelFlag: Flag[Level]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  104. def libraryName: String

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → AdminHttpServer
  105. def linterRules: Seq[Rule]

    Permalink
    Definition Classes
    Linters
  106. def loadModules(): InstalledModules

    Permalink
    Attributes
    protected[com.twitter.inject]
    Definition Classes
    App
  107. def loadServiceBindings: Seq[Binding[_]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    App
  108. final def logger: Logger

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  109. def loggerFactories: List[LoggerFactory]

    Permalink
    Definition Classes
    Logging
  110. final def loggerName: String

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  111. final def main(): Unit

    Permalink
    Definition Classes
    TwitterServer → App
  112. final def main(args: Array[String]): Unit

    Permalink
    Definition Classes
    App
  113. def modules: Seq[Module]

    Permalink
    Attributes
    protected
    Definition Classes
    App
  114. val name: String

    Permalink
    Definition Classes
    App
  115. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  116. final def nonExitingMain(args: Array[String]): Unit

    Permalink
    Definition Classes
    App
  117. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  118. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  119. final def observe(event: Event)(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Lifecycle
  120. final def observeFuture(event: Event)(f: Future[Unit]): Future[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    Lifecycle
  121. def onExit(): Unit

    Permalink
    Definition Classes
    AbstractApp
  122. final def onExit(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  123. def onExitLast(): Unit

    Permalink
    Definition Classes
    AbstractApp
  124. final def onExitLast(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  125. def onInit(): Unit

    Permalink
    Definition Classes
    AbstractApp
  126. val outputFlag: Flag[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  127. def overrideModules: Seq[Module]

    Permalink
    Attributes
    protected
    Definition Classes
    App
  128. def parseArgs(args: Array[String]): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    App
  129. def postInjectorStartup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
    Annotations
    @Lifecycle()
  130. def postMain(): Unit

    Permalink
    Definition Classes
    AbstractApp
  131. def postWarmup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    ThriftServerTrait → TwitterServer → App
    Annotations
    @Lifecycle()
  132. final def postmain(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  133. def preMain(): Unit

    Permalink
    Definition Classes
    AbstractApp
  134. def prebindWarmup(): Unit

    Permalink
    Definition Classes
    Warmup
  135. final def premain(f: ⇒ Unit): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    App
  136. def ready(timeout: Duration)(implicit permit: CanAwait): AbstractThriftServerTrait.this.type

    Permalink
    Definition Classes
    CloseOnceAwaitably0 → Awaitable
  137. def resolveFinagleClientsOnStartup: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  138. def result(timeout: Duration)(implicit permit: CanAwait): Unit

    Permalink
    Definition Classes
    CloseOnceAwaitably0 → Awaitable
  139. val rollPolicyFlag: Flag[Policy]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  140. val rotateCountFlag: Flag[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  141. def routes: Seq[Route]

    Permalink
    Definition Classes
    AdminHttpServer
  142. final def run(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
  143. def setup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  144. lazy val shutdownTimer: Timer

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
  145. def start(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  146. final def startupCompletionEvent: Event

    Permalink
    Attributes
    protected[com.twitter]
    Definition Classes
    TwitterServer → Warmup → TwitterServer
  147. def statsReceiver: StatsReceiver

    Permalink
    Definition Classes
    Stats
  148. def statsReceiverModule: Module

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer
  149. final val suppressGracefulShutdownErrors: Boolean

    Permalink
    Definition Classes
    TwitterServer → App
  150. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  151. def thriftPort: Option[Int]

    Permalink
    Definition Classes
    ThriftServerTrait → Ports
  152. def thriftResponseClassifierModule: Module

    Permalink

    Default com.twitter.inject.TwitterModule for providing a ThriftResponseClassifier.

    Default com.twitter.inject.TwitterModule for providing a ThriftResponseClassifier.

    returns

    a com.twitter.inject.TwitterModule which provides a ThriftResponseClassifier implementation.

    Attributes
    protected
    Definition Classes
    ThriftServerTrait
  153. def time[T](formatStr: String)(func: ⇒ T): T

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  154. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  155. def trace(marker: Marker, message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  156. def trace(message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  157. def trace(marker: Marker, message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  158. def trace(message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  159. def traceResult[T](message: ⇒ String)(fn: ⇒ T): T

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  160. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  161. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  162. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  163. def warmup(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    TwitterServer → App
  164. def warmupComplete(): Unit

    Permalink
    Definition Classes
    Warmup
  165. def warn(marker: Marker, message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  166. def warn(message: ⇒ Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  167. def warn(marker: Marker, message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  168. def warn(message: ⇒ Any): Unit

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging
  169. def warnResult[T](message: ⇒ String)(fn: ⇒ T): T

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Logging

Deprecated Value Members

  1. lazy val log: Logger

    Permalink
    Definition Classes
    DeprecatedLogging → Logging
    Annotations
    @deprecated
    Deprecated

    (Since version 2017-10-06) For backwards compatibility only.

Inherited from ThriftServerTrait

Inherited from AbstractTwitterServer

Inherited from TwitterServer

Inherited from Warmup

Inherited from Ports

Inherited from DeprecatedLogging

Inherited from Logging

Inherited from TwitterServer

Inherited from Lifecycle

Inherited from AdminHttpServer

Inherited from Hooks

Inherited from DtabFlags

Inherited from Linters

Inherited from Stats

Inherited from Slf4jBridge

Inherited from AbstractApp

Inherited from App

Inherited from Logging

Inherited from Logging

Inherited from App

Inherited from Lifecycle

Inherited from CloseOnceAwaitably

Inherited from CloseOnceAwaitably0[Unit]

Inherited from Awaitable[Unit]

Inherited from ClosableOnce

Inherited from CloseOnce

Inherited from Closable

Inherited from AnyRef

Inherited from Any

Ungrouped