eTextReader.clientInterface
Class DBClientOnlineTest

java.lang.Object
  extended by java.lang.Thread
      extended by eTextReader.clientInterface.DBClientOnlineTest
All Implemented Interfaces:
java.lang.Runnable

public class DBClientOnlineTest
extends java.lang.Thread

A thread that polls the db server periodically to report when it is online.

Version:
1, 7/24/2003
Author:
Daniel Morrison Hope College Independent Study Research 2003

Nested Class Summary
 
Nested classes/interfaces inherited from class java.lang.Thread
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
 
Field Summary
private  DBClient client
           
private  boolean endThread
           
private  java.lang.String host
           
private  long waitTime
           
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
DBClientOnlineTest(DBClient db, java.lang.String h)
          Constructs a DBClientOnlineTest object.
DBClientOnlineTest(DBClient db, java.lang.String h, long t)
          Constructs a DBClientOnlineTest object.
 
Method Summary
 void run()
           
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

host

private java.lang.String host

waitTime

private long waitTime

endThread

private boolean endThread

client

private DBClient client
Constructor Detail

DBClientOnlineTest

public DBClientOnlineTest(DBClient db,
                          java.lang.String h)
Constructs a DBClientOnlineTest object. Default constructor.

Parameters:
The - sending DBClient object.
The - host to connect to.

DBClientOnlineTest

public DBClientOnlineTest(DBClient db,
                          java.lang.String h,
                          long t)
Constructs a DBClientOnlineTest object.

Parameters:
The - sending DBClient object.
The - host to connect to.
The - time to wait between connections (in milliseconds);
Method Detail

run

public void run()
Specified by:
run in interface java.lang.Runnable
Overrides:
run in class java.lang.Thread