JIVE Platform
Release 0.3.1

edu.bsu.cs.jive.util
Class InputStreamRedirector

java.lang.Object
  extended by java.lang.Thread
      extended by edu.bsu.cs.jive.util.InputStreamRedirector
All Implemented Interfaces:
Runnable

public class InputStreamRedirector
extends Thread

Redirects the data from an input stream into a specified output stream. This class only handles textual data for now.


Nested Class Summary
 
Nested classes/interfaces inherited from class java.lang.Thread
Thread.State, Thread.UncaughtExceptionHandler
 
Field Summary
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
InputStreamRedirector(InputStream in, OutputStream out)
          Create a new input stream redirector
 
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
 

Constructor Detail

InputStreamRedirector

public InputStreamRedirector(InputStream in,
                             OutputStream out)
Create a new input stream redirector

Parameters:
in - the input stream, where data comes from
out - the output stream, where the data will be put
Method Detail

run

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

JIVE Platform
Release 0.3.1