org.apache.catalina.tribes.transport.bio
Class BioReplicationThread

java.lang.Object
  extended by java.lang.Thread
      extended by org.apache.catalina.tribes.transport.WorkerThread
          extended by org.apache.catalina.tribes.transport.bio.BioReplicationThread
All Implemented Interfaces:
java.lang.Runnable

public class BioReplicationThread
extends WorkerThread

A worker thread class which can drain channels and echo-back the input. Each instance is constructed with a reference to the owning thread pool object. When started, the thread loops forever waiting to be awakened to service the channel associated with a SelectionKey object. The worker is tasked by calling its serviceChannel() method with a SelectionKey object. The serviceChannel() method stores the key reference in the thread object then calls notify() to wake it up. When the channel has been drained, the worker thread returns itself to its parent pool.

Version:
$Revision: 467222 $, $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $
Author:
Filip Hanik

Nested Class Summary
 
Nested classes/interfaces inherited from class java.lang.Thread
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
 
Field Summary
protected static Log log
           
protected  ObjectReader reader
           
protected  java.net.Socket socket
           
 
Fields inherited from class org.apache.catalina.tribes.transport.WorkerThread
OPTION_DIRECT_BUFFER, useBufferPool
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
BioReplicationThread(ListenCallback callback)
           
 
Method Summary
 void close()
           
protected  void drainSocket()
          The actual code which drains the channel associated with the given key.
protected  void execute(ObjectReader reader)
           
 void run()
           
protected  void sendAck(byte[] command)
          send a reply-acknowledgement (6,2,3)
 void serviceSocket(java.net.Socket socket, ObjectReader reader)
           
 
Methods inherited from class org.apache.catalina.tribes.transport.WorkerThread
getCallback, getOptions, getPool, getUseBufferPool, isDoRun, setCallback, setDoRun, setOptions, setPool, setUseBufferPool
 
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

log

protected static Log log

socket

protected java.net.Socket socket

reader

protected ObjectReader reader
Constructor Detail

BioReplicationThread

public BioReplicationThread(ListenCallback callback)
Method Detail

run

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

serviceSocket

public void serviceSocket(java.net.Socket socket,
                          ObjectReader reader)

execute

protected void execute(ObjectReader reader)
                throws java.lang.Exception
Throws:
java.lang.Exception

drainSocket

protected void drainSocket()
                    throws java.lang.Exception
The actual code which drains the channel associated with the given key. This method assumes the key has been modified prior to invocation to turn off selection interest in OP_READ. When this method completes it re-enables OP_READ and calls wakeup() on the selector so the selector will resume watching this channel.

Throws:
java.lang.Exception

sendAck

protected void sendAck(byte[] command)
send a reply-acknowledgement (6,2,3)

Parameters:
key -
channel -

close

public void close()
Overrides:
close in class WorkerThread


Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.