| org.quickserver.net.server.ClientData
All known Subclasses: echowebserver.EchoWSData, echoserver.Data, org.quickserver.net.qsadmin.Data, filesrv.Data, pipeserver.Data, chatserver.ChatData, cmdserver.CmdData, xmladder.Data, ftpserver.Data,
ClientData | public interface ClientData extends java.io.Serializable(Code) | | This is a marker interface, which a class can implement to
act has a client data carrier.
This class stores any data associated a client during its
session with the QuickServer. This class can be used by
ClientCommandHandler class to store any data about
the client it may need in the next call to
ClientCommandHandler.handleCommand from the same client.
Note: It is recommended the ClientData implementation also
implement
org.quickserver.util.pool.PoolableObject so that
QuickServer can create a pool of objects and reuse objects from
that pool, instead of creating an new instance for every client.
|
|
|