|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IServerStatus
Provides access to the properties of the status of the ArcGIS Server.
The IServerStatus interface provides access to information concerning the state of the ArcGIS Server, its SOC machines and its server object configurations. This interface can be obtained with a Query Interface on IServerObjectAdmin.
The InstanceCount property holds the number of server object instances currently running on the entire ArcGIS Server (includes all SOC machines). This number will always contain two more configuration instances than you deploy. These two "extra" configuration instances correspond to an instance of the SDM.ServerDirectoryManager and an instance of the SrvLog.ServerLog configurations and are started and controlled by the SOM. You cannot alter these configurations. It is also important to note that these two instances do participate in the total number of instances allowed by the server configuration Capacity property. For example, if you set Capacity = 22, you will only be able to add 20 more configuration instances before the pool-shrinking algorithm engages. However, these two configurations will not be removed in a pool-shrinking operation and will stay on the machine on which they were instantiated unless that machine is removed or becomes disabled. In this case, the two instances will get redistributed to somewhere on the other SOC machines.
The InstanceInUseCount property holds the number of server object instances that are currently in use by ArcGIS Server clients. An instance is counted as "in use" until the client releases the server context.
The GetConfigurationStatus method returns an IServerObjectConfigurationStatus interface which can report the number of active and inactive instances and the enabled status of the configuration in the method argument.
Method Summary | |
---|---|
IServerObjectConfigurationStatus |
getConfigurationStatus(String name,
String typeName)
Gets the configuration status for the server object configuration with the specified Name and TypeName. |
int |
getInstanceCount(int access)
The number of server object instances currently running in the ArcGIS server. |
int |
getInstanceInUseCount(int access)
The number of currently running server object instances in use by clients of the ArcGIS server. |
IServerMachineStatus |
getMachineStatus(String machine)
Gets the status for an ArcGIS Server host machine. |
Date |
getStartTime()
The time that the server was started. |
boolean |
isEnabled()
Indicates if the server is started and enabled(true) or not(false). |
Method Detail |
---|
int getInstanceCount(int access) throws IOException, AutomationException
access
- A com.esri.arcgis.server.esriAccessLevel constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getInstanceInUseCount(int access) throws IOException, AutomationException
access
- A com.esri.arcgis.server.esriAccessLevel constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IServerObjectConfigurationStatus getConfigurationStatus(String name, String typeName) throws IOException, AutomationException
The GetConfigurationStatus method of the IServerStatus interface provides access to information about the enabled state and running instances of a particular server object configuration.
name
- The name (in)typeName
- The typeName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IServerMachineStatus getMachineStatus(String machine) throws IOException, AutomationException
machine
- The machine (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.Date getStartTime() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean isEnabled() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |