|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IWorkspaceFactoryLockControl
Manages Geodatabase Locking
The IWorkspaceFactoryLockControl API must be used with extreme caution. Disabling schema locks can have adverse affects on all connected users. The disabling of schema locks not only prevents that workspace from establishing schema locks on an objects schema; it will also ignore any existing schema locks established by other processes.
This API is exposed at the workspace factory and allows for the Enabling and Disabling of schema locking on any workspace instantiated by the workspace factory. By default, schema locking is enabled on any workspace instantiated from a workspace factory.
Method Summary | |
---|---|
void |
disableSchemaLocking()
All workspaces created and managed by the factory will have schema locking disabled. |
void |
enableSchemaLocking()
All workspaces created and managed by the factory will have schema locking enabled. |
boolean |
isSchemaLockingEnabled()
Returns true if this factory has schema locking enabled. |
Method Detail |
---|
boolean isSchemaLockingEnabled() throws IOException, AutomationException
The read-only SchemaLockingEnabled property allows a caller to determine if the factory currently has schema locking enabled or disabled.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void enableSchemaLocking() throws IOException, AutomationException
The EnableSchemaLocking method is only needed if there is a need to turn schema locking “back on” after having called DisableSchemaLocking.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void disableSchemaLocking() throws IOException, AutomationException
The DisableSchemaLocking method will first attempt to release any existing schema locks for this process. It will also set a state of the IWorkspaceFactory that informs all workspaces instantiated by that factory to disable schema locking.
It is important to understand that when schema locking is disabled on a workspace, it doesn’t invalidate the schema lock API. The methods related to this API such as ISchemaLock.ChangeSchemaLock() will not result in the acquiring of a schema lock on the desired object.
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 |