VaultStats class abstract

The Stats definition for a vault

Constructors

VaultStats()

Properties

averageGetTime double
The mean time to execute gets.
no setterinherited
averagePutTime double
The mean time to execute puts.
no setterinherited
averageRemoveTime double
The mean time to execute removes.
no setterinherited
gets int
The number of get requests that were satisfied by the stash.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
puts int
The total number of puts to the stash
no setterinherited
removals int
The total number of removals from the stash.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addGetTime(int duration) → void
Increments the get time accumulator
inherited
addPutTime(int duration) → void
Increments the put time accumulator
inherited
addRemoveTime(int duration) → void
Increments the remove time accumulator
inherited
clear() → void
Clears the statistics counters to 0 for the associated stash.
inherited
increaseGets({int number}) → void
Increases the counter by the number specified.
inherited
increasePuts({int number = 1}) → void
Increases the counter by the number specified.
inherited
increaseRemovals({int number = 1}) → void
Increases the counter by the number specified.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited