com.twitter.inject

InjectorModule

object InjectorModule extends TwitterModule

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

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def addError(arg0: Message): Unit

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

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

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  10. final def asInstanceOf[T0]: T0

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  12. def bind[T](annot: Annotation)(implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
    Definition Classes
    TwitterModule
  13. def bind[T](arg0: Class[T]): AnnotatedBindingBuilder[T]

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

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

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  17. def bindConstant(): AnnotatedConstantBindingBuilder

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

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

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

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  22. def bindSingleton[T](implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T]

    Attributes
    protected
    Definition Classes
    TwitterModule
  23. def binder(): Binder

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

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

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

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

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  29. def createMultiBinder[MultiBindType](implicit arg0: Manifest[MultiBindType]): ScalaMultibinder[MultiBindType]

    Attributes
    protected
    Definition Classes
    TwitterModule
  30. def currentStage(): Stage

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

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

    Attributes
    protected
    Definition Classes
    Logging
  33. 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
  34. 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
  35. final def eq(arg0: AnyRef): Boolean

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  39. 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
  40. def finalize(): Unit

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  42. 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
    Definition Classes
    TwitterModule
  43. val flags: ArrayBuffer[Flag[_]]

    Attributes
    protected[com.twitter.inject]
    Definition Classes
    TwitterModule
  44. final def getClass(): Class[_]

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

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

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

    Attributes
    protected
    Definition Classes
    TwitterModule
  48. def getProvider[T](arg0: Class[T]): Provider[T]

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  53. 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
  54. def install(module: Module): Unit

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

    Attributes
    protected
    Definition Classes
    Logging
  56. def isErrorEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  57. def isInfoEnabled: Boolean

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

    Definition Classes
    Any
  59. def isTraceEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  60. def isWarnEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  61. def logger: Logger

    Attributes
    protected
    Definition Classes
    Logging
  62. def loggerName: String

    Attributes
    protected
    Definition Classes
    Logging
  63. 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]
    Definition Classes
    TwitterModule
  64. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  67. def providesInjector(injector: google.inject.Injector): Injector

    Annotations
    @Provides() @Singleton()
  68. def requestInjection(arg0: Any): Unit

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

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

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

    Attributes
    protected[com.google.inject]
    Definition Classes
    AbstractModule
  72. 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
    Definition Classes
    TwitterModule
  73. 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
    Definition Classes
    TwitterModule
  74. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  84. 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 TwitterModule

Inherited from Logging

Inherited from grizzled.slf4j.Logging

Inherited from AbstractModule

Inherited from Module

Inherited from AnyRef

Inherited from Any

Ungrouped