Packages

package util

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class AsyncLatch extends AnyRef

    A construct providing latched, asynchronous execution of side-effecting functions.

    A construct providing latched, asynchronous execution of side-effecting functions. com.twitter.finagle.util.AsyncLatch#await does not block, but the execution of functions passed to it may be delayed. That is, because the latch guarantees serial, non-concurrent execution, functions passed to await may have to wait until both of the following conditions are met:

    1. No other functions are being executed 2. The latch's count is zero

    Thus, calling com.twitter.finagle.util.AsyncLatch#incr will cause subsequent functions passed to com.twitter.finagle.util.AsyncLatch#await to be delayed until the count is decremented to zero. Once the count is zero, functions are executed in the order that they are provided to await.

  2. trait Chan [-T] extends AnyRef
  3. trait CloseNotifier extends AnyRef

    Allows resources to register their handlers to be invoked when service is closing.

  4. trait Drv extends (Rng) ⇒ Int
  5. trait OnReady extends AnyRef

    A base type for something that signals its readiness asynchronously.

  6. trait Proc [-T] extends Chan[T]

    A Proc is a process that can receive messages.

    A Proc is a process that can receive messages. Procs guarantee that exactly one message is delivered at a time, and that they are delivered in the order received.

    They can be thought of as featherweight actors.

  7. trait ReporterFactory extends (String, Option[SocketAddress]) ⇒ Monitor
  8. class Ring extends AnyRef

    Class Ring implements a hash ring.

    Class Ring implements a hash ring. Given an array mapping indices to positions, the ring supplies the reverse mapping: to which index does a position belong?

    Its distinguishing feature is that Ring can pick random positions in a range. (And then map them to their corresponding indices.) Ring can also pick without replacement two elements from a range.

    val r = new Ring(Array(1,5,20))
    r(0)  == 0
    r(1)  == 0
    r(2)  == 1
    r(5)  == 1
    r(6)  == 2
    r(20) == 2
    r(21) == 0 // Wraps around; it's a ring!
  9. trait Rng extends AnyRef

    A random number generator.

    A random number generator. Java's divergent interfaces forces our hand here: ThreadLocalRandom does not conform to java.util.Random. We bridge this gap.

  10. trait Showable [-T] extends AnyRef

    Trait showable is a type-class for showing parseable representations of objects.

  11. trait StackRegistry extends AnyRef

    A registry that allows the registration of a string identifier with a a com.twitter.finagle.Stack and its params.

    A registry that allows the registration of a string identifier with a a com.twitter.finagle.Stack and its params. This is especially useful in keeping a process global registry of Finagle clients and servers for dynamic introspection.

Value Members

  1. val DefaultLogger: Logger
  2. object ByteArrays
  3. object CloseNotifier
  4. object DefaultTimer

    Retained for compatibility.

    Retained for compatibility. Prefer HashedWheelTimer.

  5. object Drv

    Create discrete random variables representing arbitrary distributions.

  6. object ExitGuard

    ExitGuard prevents the process from exiting normally by use of a nondaemon thread whenever there is at least one guarder.

  7. object HashedWheelTimer

    A HashedWheelTimer that uses org.jboss.netty.util.HashedWheelTimer under the hood.

    A HashedWheelTimer that uses org.jboss.netty.util.HashedWheelTimer under the hood. Prefer using a single instance per application, the default instance is HashedWheelTimer.Default.

  8. object InetSocketAddressUtil
  9. object LoadService

    Load a singleton class in the manner of java.util.ServiceLoader.

    Load a singleton class in the manner of java.util.ServiceLoader. It is more resilient to varying Java packaging configurations than ServiceLoader.

    See also

    com.twitter.app.LoadService in util-app

  10. object LoadedReporterFactory extends ReporterFactory
  11. object NullReporterFactory extends ReporterFactory
  12. object Proc
  13. object Ring
  14. object Rng

    See Rngs for Java compatible APIs.

  15. object Rngs

    Java compatible forwarders.

  16. object Showable
  17. object StackRegistry

Inherited from AnyRef

Inherited from Any

Ungrouped