|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.interop.Dispatch com.esri.arcgis.geodatabase.IMultiuserWorkspaceEditProxy
public class IMultiuserWorkspaceEditProxy
Provides access to members that control Multiuser Workspace Editing.
The IMultiuserWorkspaceEdit interface allows the application to start and stop edit sessions during which the objects in a geodatabase can be updated. This differs from the IWorkspaceEdit interface in that the IMultiuserWorkspaceEdit interface is only supported by workspaces that support both edit session modes, namely enterprise geodatabases.
It should be noted that the IWorkspaceEdit::StopEditing method is still used to stop an edit session whether it is started using the IWorkspaceEdit::StartEditing or IMultiuserWorkspaceEdit::StartMultiuserEditing methods.
If the IMultiuserWorkspaceEdit interface is used the edit session can be started in either versioned or non versioned edit session modes. If the edit session mode is set to versioned the only changes to data that an application sees within an edit session are changes that are made by that application. Changes made by other concurrently executing applications (if allowed) are not seen until the edit session is saved or discarded. On the other hand, editing within an edit session in non versioned mode is the equivalent of performing standard database transactions. You still perform the edits within a standard edit session however when you’ve finished, the changes are committed as a single transaction by saving. If you don’t want to commit the changes, you abort the edit session without saving. Each transaction can include as few or as many operations as required, provided they fall within a single edit session.
Non versioned editing edits the data source directly – it doesn’t store the changes in other tables like versioned editing does. This avoids the overhead of managing these extra tables, and allows you to easily adapt non-ESRI applications so that they can read and edit the data. However, the drawback is that since you edit the data source directly, you cannot undo or redo an individual edit if you make a mistake. The only way to undo edits is to undo all edits by quitting the edit session without saving. You can perform non versioned edits on simple data only – points, lines, polygons, annotation, and relationships. You cannot perform non versioned edits on feature classes in a topology or geometric network.
The geodatabase guarantees ‘unique instancing’ of row objects retrieved from the database within an edit session. Any data access call that retrieves a non-recycling object with a particular object ID will return the in memory instance of the object if the object has already been instantiated by the application. Such behavior is needed to ensure application correctness when updating complex object models—for example, models with relationship-based messaging or models with network features where updates to the geometry of a feature affect the geometry of topologically related features.
For this reason all object editing should be done within an edit session. The geodatabase data update APIs (such as IRow::Store, ITable::Update, and ITable::Insert ) will fail if you attempt to use them outside of an edit session on object and feature classes that are marked as requiring an edit session to ensure unique instancing semantics.
The geodatabase does not support nested transactions. When editing on a SDE geodatabase only one transaction should be open at any one time. This means that if the same connection is used to edit multiple versions it is good practice to call StopEditing on the first edit session prior to calling StartMultiuserEditing on another version. If another transaction is opened prior to closing the first transaction an open transaction error will be returned to the application. Programmatically this can be avoided by calling IsBeingEdited prior to StartMultiuserEditing.
The rules for correct object editing on a geodatabase are summarized below:
Field Summary | |
---|---|
boolean |
noncastable
|
Fields inherited from class com.esri.arcgis.interop.Dispatch |
---|
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef |
Constructor Summary | |
---|---|
|
IMultiuserWorkspaceEditProxy()
|
|
IMultiuserWorkspaceEditProxy(Object obj)
|
protected |
IMultiuserWorkspaceEditProxy(Object obj,
String iid)
|
Method Summary | |
---|---|
void |
addListener(String iidStr,
Object theListener,
Object theSource)
|
int |
getMultiuserEditSessionMode()
getMultiuserEditSessionMode |
void |
removeListener(String iidStr,
Object theListener)
|
void |
startMultiuserEditing(int esMode)
startMultiuserEditing |
boolean |
supportsMultiuserEditSessionMode(int esMode)
supportsMultiuserEditSessionMode |
Methods inherited from class com.esri.arcgis.interop.Dispatch |
---|
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public boolean noncastable
Constructor Detail |
---|
public IMultiuserWorkspaceEditProxy()
public IMultiuserWorkspaceEditProxy(Object obj) throws IOException
IOException
protected IMultiuserWorkspaceEditProxy(Object obj, String iid) throws IOException
IOException
Method Detail |
---|
public void addListener(String iidStr, Object theListener, Object theSource) throws IOException
addListener
in class com.esri.arcgis.interop.Dispatch
IOException
public void removeListener(String iidStr, Object theListener) throws IOException
removeListener
in class com.esri.arcgis.interop.Dispatch
IOException
public int getMultiuserEditSessionMode() throws IOException, AutomationException
Returns an esriMultiuserEditSessionMode enumeration corresponding to the current edit session mode.
getMultiuserEditSessionMode
in interface IMultiuserWorkspaceEdit
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean supportsMultiuserEditSessionMode(int esMode) throws IOException, AutomationException
The SupportsMultiuserEditSessionMode method returns a boolean corresponding to whether the particular workspace supports the edit session mode that is specified as an argument. This property will return true if the specified edit session mode is supported. It is important to note that non versioned edit session mode is not supported by any data that is registered as versioned.
supportsMultiuserEditSessionMode
in interface IMultiuserWorkspaceEdit
esMode
- A com.esri.arcgis.geodatabase.esriMultiuserEditSessionMode constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void startMultiuserEditing(int esMode) throws IOException, AutomationException
The StartMultiuserEditing method can be used to start an edit session in either versioned or non versioned edit session mode. This method has one argument esMode which corresponds to the esriMultiuserEditSessionMode enumeration.
Calling the StartMultiuserEditing(esriMESMVersioned) method is synonymous to calling the IWorkspaceEdit::StartEditing(True) method. Both calls will result in the begining of an edit session in the versioned edit session mode.
It should be noted that the IWorkspaceEdit::StopEditing method is still used to stop an edit session whether it is started using the IWorkspaceEdit::StartEditing or IMultiuserWorkspaceEdit::StartMultiuserEditing methods.
startMultiuserEditing
in interface IMultiuserWorkspaceEdit
esMode
- A com.esri.arcgis.geodatabase.esriMultiuserEditSessionMode constant (in)
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 |