com.ibm.ras.server

Class RASConnectionHandler

  1. java.lang.Object
  2. extended bycom.ibm.ras.server.RASConnectionHandler
All implemented interfaces:
java.lang.Runnable

Deprecated. As of WAS 6.0, recommend using java.util.logging
  1. public class RASConnectionHandler
  2. extends java.lang.Object
  3. implements java.lang.Runnable
RASConnectionHandler processes individual client connections. This thread loops continuously, writing to the console and/or file until the client socket disconnects.

Constructor Summary

Constructor and Description
RASConnectionHandler(java.net.Socket socket,boolean toFile,java.io.PrintWriter pWriter)
Deprecated. Creates a RASConnectionHandler.

Method Summary

Modifier and Type Method and Description
  1. void
run()
Deprecated. Starts the RASConnectionHandler on its own thread.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

RASConnectionHandler

  1. public RASConnectionHandler(java.net.Socket socket,
  2. boolean toFile,
  3. java.io.PrintWriter pWriter)
Deprecated.
Creates a RASConnectionHandler.
Parameters:
socket - The socket on which to listen.
toFile - true to write the data to a file; false, otherwise.
pWriter - The PrintWriter to use.

Method Detail

run

  1. public void run()
Deprecated.
Starts the RASConnectionHandler on its own thread.
Specified by:
run in interface java.lang.Runnable