com.esri.arcgis.system
Interface esriLockMgrType

All Superinterfaces:
Serializable

public interface esriLockMgrType
extends Serializable

Esri lock manager types.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriLockMgrEdit
          Edit lock.
static int esriLockMgrNone
          No lock.
static int esriLockMgrRead
          Read-only lock.
static int esriLockMgrSchemaRead
          Schema read lock.
static int esriLockMgrSchemaWrite
          Schema write lock.
static int esriLockMgrWrite
          Write lock.
 

Field Detail

esriLockMgrNone

static final int esriLockMgrNone
No lock.

See Also:
Constant Field Values

esriLockMgrRead

static final int esriLockMgrRead
Read-only lock.

See Also:
Constant Field Values

esriLockMgrWrite

static final int esriLockMgrWrite
Write lock. Prevents anyone else from reading or writing to the dataset.

See Also:
Constant Field Values

esriLockMgrEdit

static final int esriLockMgrEdit
Edit lock. Will block all edits of the data and prevents anyone from writing to the dataset, allows for read access.

See Also:
Constant Field Values

esriLockMgrSchemaRead

static final int esriLockMgrSchemaRead
Schema read lock. Creates a shared read lock. Prevents others from editing the schema of the data such as editing its attributes.

See Also:
Constant Field Values

esriLockMgrSchemaWrite

static final int esriLockMgrSchemaWrite
Schema write lock. Creates an exclusive write lock. Prevents all reads, edits and writes of the data.

See Also:
Constant Field Values