All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.inject.requestscope.RequestScopeBinding.scala Maven / Gradle / Ivy

The newest version!
package com.twitter.inject.requestscope

import com.twitter.inject.TwitterModule

trait RequestScopeBinding extends TwitterModule {

  override final val modules = Seq(FinagleRequestScopeModule)

  protected def bindRequestScope[T: Manifest](): Unit = {
    bind[T]
      .toProvider[UnseededFinagleScopeProvider[T]]
      .in[FinagleRequestScoped]
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy