Package

com.twitter.finagle

util

Permalink

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

    Permalink

    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

    Permalink
  3. trait CloseNotifier extends AnyRef

    Permalink

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

  4. trait Drv extends (Rng) ⇒ Int

    Permalink
  5. trait Proc[-T] extends Chan[T]

    Permalink

    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.

  6. trait ReporterFactory extends (String, Option[SocketAddress]) ⇒ Monitor

    Permalink
  7. trait Rng extends AnyRef

    Permalink

    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.

  8. trait Showable[-T] extends AnyRef

    Permalink

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

  9. trait StackRegistry extends AnyRef

    Permalink

    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. object ByteArrays

    Permalink
  2. object CloseNotifier

    Permalink
  3. val DefaultLogger: Logger

    Permalink
  4. object DefaultTimer

    Permalink

    Retained for compatibility.

    Retained for compatibility. Prefer HashedWheelTimer.

  5. object Drv

    Permalink

    Create discrete random variables representing arbitrary distributions.

  6. object ExitGuard

    Permalink

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

  7. object HashedWheelTimer

    Permalink

    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

    Permalink
  9. object LoadService

    Permalink

    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

    Permalink
  11. object NullReporterFactory extends ReporterFactory

    Permalink
  12. object Proc

    Permalink
  13. object Rng

    Permalink

    See Rngs for Java compatible APIs.

  14. object Rngs

    Permalink

    Java compatible forwarders.

  15. object Showable

    Permalink
  16. object StackRegistry

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped