com.twitter.inject

TwitterModule

Related Doc: package inject

abstract class TwitterModule extends AbstractModule with Logging

Linear Supertypes
Logging, grizzled.slf4j.Logging, AbstractModule, Module, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TwitterModule
  2. Logging
  3. Logging
  4. AbstractModule
  5. Module
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TwitterModule()

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def addError(arg0: Message): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  5. def addError(arg0: Throwable): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  6. def addError(arg0: String, arg1: <repeated...>[AnyRef]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  7. def addTypeConvertor[T](converter: TypeConverter)(implicit arg0: Manifest[T]): Unit

    Attributes
    protected
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def bind[T](implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
  10. def bind[T](annot: Annotation)(implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
  11. def bind[T](arg0: Class[T]): AnnotatedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  12. def bind[T](arg0: TypeLiteral[T]): AnnotatedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  13. def bind[T](arg0: Key[T]): LinkedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  14. def bindAssistedFactory[T](implicit arg0: Manifest[T]): Unit

    Attributes
    protected
  15. def bindConstant(): AnnotatedConstantBindingBuilder

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  16. def bindInterceptor(arg0: Matcher[_ >: Class[_]], arg1: Matcher[_ >: Method], arg2: <repeated...>[MethodInterceptor]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  17. def bindListener(arg0: Matcher[_ >: TypeLiteral[_]], arg1: TypeListener): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  18. def bindScope(arg0: Class[_ <: Annotation], arg1: Scope): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  19. def bindSingleton[T](annot: Annotation)(implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
  20. def bindSingleton[T](implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
  21. def binder(): Binder

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  22. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def configure(): Unit

    Attributes
    protected
    Definition Classes
    TwitterModule → AbstractModule
  24. final def configure(arg0: Binder): Unit

    Definition Classes
    AbstractModule → Module
  25. def convertToTypes(arg0: Matcher[_ >: TypeLiteral[_]], arg1: TypeConverter): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  26. def createKey[T](implicit arg0: Manifest[T]): Key[T]

    Attributes
    protected
  27. def createMultiBinder[MultiBindType](implicit arg0: Manifest[MultiBindType]): ScalaMultibinder[MultiBindType]

    Attributes
    protected
  28. def currentStage(): Stage

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  29. def debug(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  30. def debug(msg: ⇒ Any): Unit

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

    Log an debug msg that contains the result of the passed in func.

    Log an debug msg that contains the result of the passed in func.

    msg

    A string containing a single %s which will be replaced with the result of func.

    func

    The function returning a future whose result will be placed in msg.

    returns

    Result of func

    Attributes
    protected
    Definition Classes
    Logging
  32. def debugResult[T](msg: String)(func: ⇒ T): T

    Log an debug msg that contains the result of the passed in func.

    Log an debug msg that contains the result of the passed in func.

    msg

    A string containing a single %s which will be replaced with the result of func.

    func

    The function whose result will be placed in msg.

    returns

    Result of func

    Attributes
    protected
    Definition Classes
    Logging
  33. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  35. def error(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  36. def error(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  37. def errorResult[T](msg: String)(func: ⇒ T): T

    Log an error msg that contains the result of the passed in func.

    Log an error msg that contains the result of the passed in func.

    msg

    A string containing a single %s which will be replaced with the result of func.

    func

    The function whose result will be placed in msg.

    returns

    Result of func

    Attributes
    protected
    Definition Classes
    Logging
  38. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  39. def flag[T](name: String, help: String)(implicit arg0: Flaggable[T], arg1: Manifest[T]): Flag[T]

    Attributes
    protected
  40. def flag[T](name: String, default: T, help: String)(implicit arg0: Flaggable[T]): Flag[T]

    Create a flag and add it to the modules flags list

    Create a flag and add it to the modules flags list

    Attributes
    protected
  41. val flags: ArrayBuffer[Flag[_]]

    Attributes
    protected[com.twitter.inject]
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. def getMembersInjector[T](arg0: TypeLiteral[T]): MembersInjector[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  44. def getMembersInjector[T](arg0: Class[T]): MembersInjector[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  45. def getProvider[T](implicit arg0: Manifest[T]): Provider[T]

    Attributes
    protected
  46. def getProvider[T](arg0: Class[T]): Provider[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  47. def getProvider[T](arg0: Key[T]): Provider[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  48. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  49. def info(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  50. def info(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  51. def infoResult[T](msg: String)(func: ⇒ T): T

    Log an info msg that contains the result of the passed in func.

    Log an info msg that contains the result of the passed in func.

    msg

    A string containing a single %s which will be replaced with the result of func.

    func

    The function whose result will be placed in msg.

    returns

    Result of func

    Attributes
    protected
    Definition Classes
    Logging
  52. def install(module: Module): Unit

    Attributes
    protected
    Definition Classes
    TwitterModule → AbstractModule
  53. def isDebugEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  54. def isErrorEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  55. def isInfoEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  56. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  57. def isTraceEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  58. def isWarnEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  59. def logger: Logger

    Attributes
    protected
    Definition Classes
    Logging
  60. def loggerName: String

    Attributes
    protected
    Definition Classes
    Logging
  61. def modules: Seq[Module]

    Additional modules to be composed into this module NOTE: This Seq of modules is used instead of the standard Guice 'install' method

    Additional modules to be composed into this module NOTE: This Seq of modules is used instead of the standard Guice 'install' method

    Attributes
    protected[com.twitter.inject]
  62. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  63. final def notify(): Unit

    Definition Classes
    AnyRef
  64. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  65. def requestInjection(arg0: Any): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  66. def requestStaticInjection(arg0: <repeated...>[Class[_]]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  67. def requireBinding(arg0: Class[_]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  68. def requireBinding(arg0: Key[_]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  69. def singletonShutdown(func: ⇒ Unit): Unit

    Invoke 'singleton func' as JVM shuts down.

    Invoke 'singleton func' as JVM shuts down. NOTE: This method should only be called from a @Singleton 'provides' method to avoid registering multiple shutdown hooks every time an object is created.

    Attributes
    protected
  70. def singletonStartup(func: (Injector) ⇒ Unit): Unit

    Invoke singleton func after Guice injector is started NOTE: This method should only be called from a @Singleton 'provides' method to avoid registering multiple startup hooks every time an object is created.

    Invoke singleton func after Guice injector is started NOTE: This method should only be called from a @Singleton 'provides' method to avoid registering multiple startup hooks every time an object is created.

    Attributes
    protected
  71. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  72. def time[T](formatStr: String)(func: ⇒ T): T

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

    Definition Classes
    AnyRef → Any
  74. def trace(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  75. def trace(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  76. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. def warn(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  80. def warn(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  81. def warnResult[T](msg: String)(func: ⇒ T): T

    Log an warn msg that contains the result of the passed in func.

    Log an warn msg that contains the result of the passed in func.

    msg

    A string containing a single %s which will be replaced with the result of func.

    func

    The function whose result will be placed in msg.

    returns

    Result of func

    Attributes
    protected
    Definition Classes
    Logging

Inherited from Logging

Inherited from grizzled.slf4j.Logging

Inherited from AbstractModule

Inherited from Module

Inherited from AnyRef

Inherited from Any

Ungrouped