com.esri.arcgis.server
Interface esriServerIsolationLevel

All Superinterfaces:
Serializable

public interface esriServerIsolationLevel
extends Serializable

The server object configuration isolation level.

Remarks

esriServerIsolationLevel indicates whether server objects created by a particular ServerObjectConfiguration are created with high isolation or low isolation. Server objects with high isolation have a dedicated process on the GIS server to each instance of the server object. Instances of server objects with low isolation may share processes with other instances of the same server object.

You can get and set the esriServerIsolationLevel for a server object using the IsolationLevel property on IServerObjectConfiguration.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriServerIsolationAny
          Low or High isolation.
static int esriServerIsolationHigh
          High isolation.
static int esriServerIsolationLow
          Low isolation.
 

Field Detail

esriServerIsolationHigh

static final int esriServerIsolationHigh
High isolation. Each server object instance runs in its own process.

See Also:
Constant Field Values

esriServerIsolationLow

static final int esriServerIsolationLow
Low isolation. Multiple server object instances may run in the same process.

See Also:
Constant Field Values

esriServerIsolationAny

static final int esriServerIsolationAny
Low or High isolation.

See Also:
Constant Field Values