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

com.twitter.finagle.context.LocalContext.scala Maven / Gradle / Ivy

package com.twitter.finagle.context

/**
 * A type of context that is local to the process. The type of Key is
 * also unique (generative) to each instance of this context, so that keys
 * cannot be used across different instances of this context type.
 */
class LocalContext extends Context {
  class Key[A]

  /**
   * A java-friendly key constructor.
   */
  def newKey[A]() = new Key[A]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy