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
-
className
- fully qualified class name or interface name.
-
currentTime
- current time on the server system.
-
daemon
- true if this is a daemon object (registered by registerInstance()).
-
implementation
- fully qualified class name of the implementation.
-
lastUsedTime
- time when last connection was made.
-
maxThreads
- maximum number of threads ever made
-
numConnect
- number of connections (clients) ever built
-
numThread
- current number of clients this object has.
-
objectID
- object name.
-
port
- port number of this object.
-
startTime
- time when this object was born.
-
stop
- true if acceptance of connect request has been stopped.
-
ObjectStatus()
-
-
get()
-
-
list(PrintStream)
-
className
public String className
- fully qualified class name or interface name.
implementation
public String implementation
- fully qualified class name of the implementation. This field is
used only when className is an interface.
objectID
public String objectID
- object name. Not URL.
daemon
public boolean daemon
- true if this is a daemon object (registered by registerInstance()).
port
public int port
- port number of this object. If 0, this object can be connected from
any port.
stop
public boolean stop
- true if acceptance of connect request has been stopped.
numThread
public int numThread
- current number of clients this object has.
maxThreads
public int maxThreads
- maximum number of threads ever made
startTime
public long startTime
- time when this object was born. System.currentTimeMillis() format.
lastUsedTime
public long lastUsedTime
- time when last connection was made. System.currentTimeMillis() format.
currentTime
public long currentTime
- current time on the server system. System.currentTimeMillis() format.
numConnect
public int numConnect
- number of connections (clients) ever built
ObjectStatus
public ObjectStatus()
get
public ObjectStatus get()
list
public void list(PrintStream ps)
All Packages Class Hierarchy This Package Previous Next Index