ORG.oclc.zbase.server
Class ZBaseMultiThread
java.lang.Object
|
+--ORG.oclc.zbase.server.ZBaseThread
|
+--ORG.oclc.zbase.server.ZBaseMultiThread
- public class ZBaseMultiThread
- extends ZBaseThread
ZBaseMultiThread is for multiple sessions across one connection. It will not do
a connection-less (strictly Z39.50) protocol. Outside Z39.50 users need
to be connected via ZBaseSingleThread.
Method Summary |
void |
init(IniFile ini,
String name,
boolean verbose)
init should only be called once. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
ZBaseMultiThread
public ZBaseMultiThread()
init
public void init(IniFile ini,
String name,
boolean verbose)
- init should only be called once. It sets some static variables. It is not
a static method because static methods cannot be subclassed. init
is called through ZBaseThread and not directly. All ZBaseThreads must
implement an init class.
- Parameters:
ini
- configuration filename
- section name for this threadverbose
- flag indicating whether config information should be dumped
to the server log.- Overrides:
- init in class ZBaseThread