org.hebe.mps
Class Thunk

java.lang.Object
  |
  +--org.hebe.mps.Thunk

public abstract class Thunk
extends java.lang.Object

This class is used to glue together interface implementation-methods and the Server dispatch code.

See Also:
Server.dispatch(int, org.hebe.mps.InputStream, org.hebe.mps.OutputStream), org.hebe.mps.naming.NamingServiceServer#setup

Constructor Summary
Thunk()
           
 
Method Summary
abstract  void action(InputStream __input, OutputStream __output)
          Invokes the implementation-method.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Thunk

public Thunk()
Method Detail

action

public abstract void action(InputStream __input,
                            OutputStream __output)
                     throws MPSException
Invokes the implementation-method. Called from Server.dispatch().
See Also:
Server.dispatch(int, org.hebe.mps.InputStream, org.hebe.mps.OutputStream)