kamon

util

package util

Visibility
  1. Public
  2. All

Type Members

  1. trait Function[T, R] extends AnyRef

  2. final class GlobPathFilter extends AnyRef

  3. class LazyActorRef extends AnyRef

    A LazyActorRef accumulates messages sent to an actor that doesn't exist yet.

    A LazyActorRef accumulates messages sent to an actor that doesn't exist yet. Once the actor is created and the LazyActorRef is pointed to it, all the accumulated messages are flushed and any new message sent to the LazyActorRef will immediately be sent to the pointed ActorRef.

    This is intended to be used during Kamon's initialization where some components need to use ActorRefs to work (like subscriptions and the trace incubator) but our internal ActorSystem is not yet ready to create the required actors.

  4. final class MilliTimestamp extends AnyVal

    Epoch time stamp in milliseconds.

  5. final class NanoInterval extends AnyVal

    Number of nanoseconds that passed between two points in time.

  6. final class NanoTimestamp extends AnyVal

    Epoch time stamp in nanoseconds.

    Epoch time stamp in nanoseconds.

    NOTE: This doesn't have any better precision than MilliTimestamp, it is just a convenient way to get a epoch timestamp in nanoseconds.

  7. class PaddedAtomicLong extends AtomicLong

  8. final class RelativeNanoTimestamp extends AnyVal

    Number of nanoseconds between a arbitrary origin timestamp provided by the JVM via System.nanoTime()

  9. class Sequencer extends AnyRef

    This class implements an extremely efficient, thread-safe way to generate a incrementing sequence of Longs with a simple Long overflow protection.

  10. trait Supplier[T] extends AnyRef

  11. final class Timestamp extends AnyVal

    Epoch time stamp.

Value Members

  1. object ConfigTools

  2. object FastDispatch

    Extension for Future[ActorRef].

    Extension for Future[ActorRef]. Try to dispatch a message to a Future[ActorRef] in the same thread if it has already completed or do the regular scheduling otherwise. Specially useful when using the ModuleSupervisor extension to create actors.

  3. object JavaTags

  4. object Latency

  5. object MapMerge

  6. object MilliTimestamp

  7. object NanoInterval

  8. object NanoTimestamp

  9. object RelativeNanoTimestamp

  10. object SameThreadExecutionContext extends ExecutionContext

    For small code blocks that don't need to be run on a separate thread.

  11. object Sequencer

  12. object Timestamp

  13. object TriemapAtomicGetOrElseUpdate

  14. package executors

  15. package http

Ungrouped