com.msi.network.server
Interface RHBuilder


public interface RHBuilder

This defines the methods necessary for a request handler builder that can be used by the request handler factory. A very simple example is shown below:


 public class echoRHBuilder implements RHBuilder {
   public echoRHBuilder() {  }
   public RequestHandler newRH() {
     return new echoRequestHandler();
   }

Version:
1.0
Author:
Ken Thompson

Method Summary
 RequestHandler newRH()
          Part of the application that creates and initializes a request handler for the server.
 

Method Detail

newRH

public RequestHandler newRH()
Part of the application that creates and initializes a request handler for the server.

Returns:
a RequestHandler used to service a client request.


Copyright © 2001-2002 MileStone Solutions, Inc. All Rights Reserved.