com.esri.arcgis.server
Interface esriServerDirectoryCleaningMode

All Superinterfaces:
Serializable

public interface esriServerDirectoryCleaningMode
extends Serializable

The server directory cleaning mode.

Remarks

esriServerDirectoryCleaningMode indicates whether a GIS server's server directory's files are automatically deleted or not. If the files are deleted, esriServerDirectoryCleaningMode specifies the criteria on which they are deleted. Files in a directory whose cleaning mode is esriSDCSliding will be deleted based on their last accessed time. Files in a directory whose cleaning mode is esriSDCAbsolute will be deleted based on their creation time. You get and set the esriServerDirectoryCleaningMode via the CleaningMode property on IServerDirectory, and you can get the esriServerDirectoryCleaningMode via the CleaningMode property on IServerDirectoryInfo.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriSDCAbsolute
          Files in the directory are cleaned by the GIS server based on the amount of time elapsed since they were created.
static int esriSDCNone
          Files in the directory are not deleted by the GIS server.
static int esriSDCSliding
          Files in the directory are cleaned by the GIS server based on the amount of time elapsed since they were last accessed.
 

Field Detail

esriSDCNone

static final int esriSDCNone
Files in the directory are not deleted by the GIS server.

See Also:
Constant Field Values

esriSDCSliding

static final int esriSDCSliding
Files in the directory are cleaned by the GIS server based on the amount of time elapsed since they were last accessed.

See Also:
Constant Field Values

esriSDCAbsolute

static final int esriSDCAbsolute
Files in the directory are cleaned by the GIS server based on the amount of time elapsed since they were created.

See Also:
Constant Field Values