Uses of Class
com.caucho.quercus.env.SessionArrayValue

Packages that use SessionArrayValue
com.caucho.quercus   
com.caucho.quercus.env   
com.caucho.quercus.lib.session   
 

Uses of SessionArrayValue in com.caucho.quercus
 

Methods in com.caucho.quercus that return SessionArrayValue
 SessionArrayValue QuercusContext.loadSession(Env env, java.lang.String sessionId)
          Loads the session from the backing.
 

Methods in com.caucho.quercus with parameters of type SessionArrayValue
 void QuercusContext.saveSession(Env env, SessionArrayValue session)
          Saves the session to the backing.
 

Uses of SessionArrayValue in com.caucho.quercus.env
 

Subclasses of SessionArrayValue in com.caucho.quercus.env
 class ResinSessionArrayValue
          Represents the $_SESSION
 

Methods in com.caucho.quercus.env that return SessionArrayValue
 SessionArrayValue Env.createSession(java.lang.String sessionId, boolean create)
          Create the session.
 SessionArrayValue Env.getSession()
          Returns the session.
 

Methods in com.caucho.quercus.env with parameters of type SessionArrayValue
 void Env.setSession(SessionArrayValue session)
          Sets the session.
 

Uses of SessionArrayValue in com.caucho.quercus.lib.session
 

Fields in com.caucho.quercus.lib.session with type parameters of type SessionArrayValue
protected  java.util.Iterator<SessionArrayValue> QuercusSessionManager._sessionIter
           
protected  java.util.ArrayList<SessionArrayValue> QuercusSessionManager._sessionList
           
protected  LruCache<java.lang.String,SessionArrayValue> QuercusSessionManager._sessions
           
 

Methods in com.caucho.quercus.lib.session that return SessionArrayValue
protected  SessionArrayValue QuercusSessionManager.create(Env env, java.lang.String key, long now)
          Creates a session.
 SessionArrayValue QuercusSessionManager.createSession(Env env, java.lang.String oldId, long now)
          Create a new session.
protected  SessionArrayValue QuercusSessionManager.createSessionValue(java.lang.String key, long now, long sessionTimeout)
          Creates a new SessionArrayValue instance.
 SessionArrayValue QuercusSessionManager.getSession(Env env, java.lang.String key, long now)
          Returns a session from the session store, returning null if there's no cached session.
 

Methods in com.caucho.quercus.lib.session with parameters of type SessionArrayValue
protected  boolean QuercusSessionManager.load(Env env, SessionArrayValue session, long now)
          Loads the session from the backing store.
 void QuercusSessionManager.saveSession(Env env, SessionArrayValue session)