Package ome.services.sessions.stats
Class SimpleSessionStats
- java.lang.Object
-
- ome.services.sessions.stats.SimpleSessionStats
-
- All Implemented Interfaces:
SessionStats
public class SimpleSessionStats extends java.lang.Object implements SessionStats
- Since:
- Beta4
-
-
Constructor Summary
Constructors Constructor Description SimpleSessionStats(ObjectsReadCounter read, ObjectsWrittenCounter written, MethodCounter methods)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
loadedObjects(int objects)
long
methodCount()
void
methodIn()
void
methodOut()
void
readBytes(int bytes)
void
updatedObjects(int objects)
void
writtenBytes(int bytes)
-
-
-
Constructor Detail
-
SimpleSessionStats
public SimpleSessionStats(ObjectsReadCounter read, ObjectsWrittenCounter written, MethodCounter methods)
-
-
Method Detail
-
methodIn
public void methodIn()
- Specified by:
methodIn
in interfaceSessionStats
-
methodCount
public long methodCount()
- Specified by:
methodCount
in interfaceSessionStats
-
methodOut
public void methodOut()
- Specified by:
methodOut
in interfaceSessionStats
-
loadedObjects
public void loadedObjects(int objects)
- Specified by:
loadedObjects
in interfaceSessionStats
-
readBytes
public void readBytes(int bytes)
- Specified by:
readBytes
in interfaceSessionStats
-
updatedObjects
public void updatedObjects(int objects)
- Specified by:
updatedObjects
in interfaceSessionStats
-
writtenBytes
public void writtenBytes(int bytes)
- Specified by:
writtenBytes
in interfaceSessionStats
-
-