org.vrspace.server
Class Session.Status

java.lang.Object
  extended byorg.vrspace.server.Session.Status
Enclosing class:
Session

public class Session.Status
extends java.lang.Object

Session status info


Field Summary
 boolean active
          whether this session is active, i.e.
 boolean cacheRequests
          a session may cache requests and forward them to the client later
 Client client
          Client in this session
 long lastTime
          time of last request processed, milliseconds
 long receivedChars
          total characters received from the client
 long receivedRequests
          total requests received from the client
 long sentChars
          total characters sent to the client
 long sentRequests
          total requests sent to the client
 long startTime
          session start time, milliseconds
 long stopTime
          session stop time, milliseconds (0 till active)
 
Constructor Summary
Session.Status()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

active

public boolean active
whether this session is active, i.e. client is online


client

public Client client
Client in this session


sentChars

public long sentChars
total characters sent to the client


sentRequests

public long sentRequests
total requests sent to the client


receivedChars

public long receivedChars
total characters received from the client


receivedRequests

public long receivedRequests
total requests received from the client


startTime

public long startTime
session start time, milliseconds


stopTime

public long stopTime
session stop time, milliseconds (0 till active)


lastTime

public long lastTime
time of last request processed, milliseconds


cacheRequests

public boolean cacheRequests
a session may cache requests and forward them to the client later

Constructor Detail

Session.Status

public Session.Status()