Package ome.services.sessions.stats
Class NullSessionStats
- java.lang.Object
-
- ome.services.sessions.stats.NullSessionStats
-
- All Implemented Interfaces:
SessionStats
public class NullSessionStats extends java.lang.Object implements SessionStats
Implementation ofSessionStats
which does nothing. This is used for internal and privileged sessions which are not counted.- Since:
- Beta4
-
-
Constructor Summary
Constructors Constructor Description NullSessionStats()
-
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)
-
-
-
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
-
-