rummage

package rummage

The rummage package is a collection of small Scala utilities.

This package consists of self-contained utilities that are too small and general to warrant their own package and/or artifact, but are too large, nuanced or handy to have around to be re-implemented over and over again.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. rummage
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class AkkaClock(akkaScheduler: Scheduler) extends SystemTime with SyncWaitBySleeping with AsyncWaitWithAkkaScheduler with Product with Serializable

    A clock for use in Akka actors, using system time and Thread.

  2. trait AkkaClocks extends AnyRef

    A trait that defines when an implicit Akka clock is available.

  3. trait Clock extends AnyRef

    A low-level abstraction over time.

  4. case class DeadlineException(duration: FiniteDuration) extends RuntimeException with NoStackTrace with Product with Serializable

    The exception returned when a deadline cannot be met.

  5. trait Deadlines extends AnyRef

    Definition of the deadline DSL.

  6. case class ScaledClock(factor: Double)(implicit clock: Clock) extends Clock with Product with Serializable

    A clock that scales the progression of time reported by another clock.

  7. final class AkkaTimer extends Timer

    A timer implemented with an Akka Scheduler.

  8. final class JavaTimer extends Timer

    A timer implemented with a Java ScheduledExecutorService.

  9. trait Timer extends AnyRef

    An interface for scheduling tasks to run one or more times at some point in the future.

Value Members

  1. object AkkaClock extends Serializable

    Support for the AkkaClock class.

  2. object AkkaClocks extends AkkaClocks

    Global access to the implicit Akka clock publisher.

  3. object Clock

    Primary factory and resolver for instances of Clock.

  4. object Deadline

    A factory for deadline-bound futures.

  5. object Deadlines extends Deadlines

    Global implementation of the deadline DSL.

  6. object ScaledClock extends Serializable

    A factory for scaled clocks.

  7. object TryAll

    An extension to the scala.util.Try interface to support aggregated try operations.

Deprecated Value Members

  1. object AkkaTimer

    Factory for timers implemented with an Akka Scheduler.

  2. object JavaTimer

    Factory for timers implemented with a Java ScheduledExecutorService.

  3. object Timer extends Timer

    Definitions associated with timers as well as the infrastructure for publishing the global implicit timer.

Inherited from AnyRef

Inherited from Any

Ungrouped