final case class FsStatistics extends Immutable with Product with Serializable
An immutable record of statistics for file system operations.
- Exceptions thrown
IllegalArgumentException
if any parameter value is negative.
- Alphabetic
- By Inheritance
- FsStatistics
- Serializable
- Serializable
- Product
- Equals
- Immutable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equalsIgnoreTime(that: FsStatistics): Boolean
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
logRead(nanosDelta: Long, bytesDelta: Long, threadsTotal: Int): FsStatistics
Logs a read operation with the given sample data and returns a new object to reflect the updated statistics.
Logs a read operation with the given sample data and returns a new object to reflect the updated statistics.
- nanosDelta
the execution time in nanoseconds.
- bytesDelta
the number of bytes read.
- returns
A new object which reflects the updated statistics.
- Annotations
- @throws( classOf[IllegalArgumentException] )
- Exceptions thrown
IllegalArgumentException
if any parameter value is negative.
-
def
logSync(nanosDelta: Long, threadsTotal: Int): FsStatistics
Logs a sync operation with the given sample data and returns a new object to reflect the updated statistics.
Logs a sync operation with the given sample data and returns a new object to reflect the updated statistics.
- nanosDelta
the execution time in nanoseconds.
- returns
A new object which reflects the updated statistics.
- Annotations
- @throws( classOf[IllegalArgumentException] )
- Exceptions thrown
IllegalArgumentException
if any parameter value is negative.
-
def
logWrite(nanosDelta: Long, bytesDelta: Long, threadsTotal: Int): FsStatistics
Logs a write operation with the given sample data and returns a new object to reflect the updated statistics.
Logs a write operation with the given sample data and returns a new object to reflect the updated statistics.
- nanosDelta
the execution time in nanoseconds.
- bytesDelta
the number of bytes written.
- returns
A new object which reflects the updated statistics.
- Annotations
- @throws( classOf[IllegalArgumentException] )
- Exceptions thrown
IllegalArgumentException
if any parameter is negative.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- val readStats: IoStatistics
- val syncStats: SyncStatistics
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val timeMillis: Long
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val writeStats: IoStatistics