Open SiteSearch 4.1.1
Final

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.


Constructor Summary
ZBaseMultiThread()
           
 
Method Summary
 void init(IniFile ini, String name, boolean verbose)
          init should only be called once.
 
Methods inherited from class ORG.oclc.zbase.server.ZBaseThread
init, run
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ZBaseMultiThread

public ZBaseMultiThread()
Method Detail

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 file
name - section name for this thread
verbose - flag indicating whether config information should be dumped to the server log.
Overrides:
init in class ZBaseThread

Open SiteSearch 4.1.1
Final