All Packages Class Hierarchy This Package Previous Next Index
Class ninja.rmi.NinjaServerThread
java.lang.Object
|
+----java.lang.Thread
|
+----ninja.rmi.NinjaServerThread
- public abstract class NinjaServerThread
- extends Thread
NinjaServerThread is a Thread which is forked to listen for remote
invocations on a NinjaRemoteObject. It is an abstract class which
should be implemented to handle the particular kind of communication
semantics required by the underlying remote object. All incoming RMI
calls by a client are invoked in the context of a NinjaServerThread.
Users should not create or manage NinjaServerThreads directly; they are
created by the server-side Ninja RMI code.
- See Also:
- Reliable_ServerThread, UnrelOw_ServerThread, McastOw_ServerThread
-
run()
- The run() method of the Thread; is invoked by doing thread.start().
run
public abstract void run()
- The run() method of the Thread; is invoked by doing thread.start().
- Overrides:
- run in class Thread
All Packages Class Hierarchy This Package Previous Next Index