Class horb.orb.ObjectStatus
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class horb.orb.ObjectStatus

java.lang.Object
   |
   +----horb.orb.ObjectStatus

public class ObjectStatus
extends Object
implements Cloneable

Variable Index

 o className
fully qualified class name or interface name.
 o currentTime
current time on the server system.
 o daemon
true if this is a daemon object (registered by registerInstance()).
 o implementation
fully qualified class name of the implementation.
 o lastUsedTime
time when last connection was made.
 o maxThreads
maximum number of threads ever made
 o numConnect
number of connections (clients) ever built
 o numThread
current number of clients this object has.
 o objectID
object name.
 o port
port number of this object.
 o startTime
time when this object was born.
 o stop
true if acceptance of connect request has been stopped.

Constructor Index

 o ObjectStatus()

Method Index

 o get()
 o list(PrintStream)

Variables

 o className
  public String className
fully qualified class name or interface name.
 o implementation
  public String implementation
fully qualified class name of the implementation. This field is used only when className is an interface.
 o objectID
  public String objectID
object name. Not URL.
 o daemon
  public boolean daemon
true if this is a daemon object (registered by registerInstance()).
 o port
  public int port
port number of this object. If 0, this object can be connected from any port.
 o stop
  public boolean stop
true if acceptance of connect request has been stopped.
 o numThread
  public int numThread
current number of clients this object has.
 o maxThreads
  public int maxThreads
maximum number of threads ever made
 o startTime
  public long startTime
time when this object was born. System.currentTimeMillis() format.
 o lastUsedTime
  public long lastUsedTime
time when last connection was made. System.currentTimeMillis() format.
 o currentTime
  public long currentTime
current time on the server system. System.currentTimeMillis() format.
 o numConnect
  public int numConnect
number of connections (clients) ever built

Constructors

 o ObjectStatus
  public ObjectStatus()

Methods

 o get
  public ObjectStatus get()
 o list
  public void list(PrintStream ps)

All Packages  Class Hierarchy  This Package  Previous  Next  Index