Packages

c

gopher.Transputer

RecoveryStatistics

case class RecoveryStatistics(nFailures: Int = 0, windowStart: Long = 0, firstFailure: Option[Throwable] = None, lastFailure: Option[Throwable] = None) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RecoveryStatistics
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RecoveryStatistics(nFailures: Int = 0, windowStart: Long = 0, firstFailure: Option[Throwable] = None, lastFailure: Option[Throwable] = None)

Value Members

  1. def failure(ex: Throwable, recoveryLimits: RecoveryLimits, nanoNow: Long): Boolean
  2. var firstFailure: Option[Throwable]
  3. var lastFailure: Option[Throwable]
  4. var nFailures: Int
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. def sameWindow(recoveryLimits: RecoveryLimits, nanoNow: Long): Boolean
  7. var windowStart: Long