DOFOperationOperationListenercomplete Method OpenDOF Object Access Library
Operation completed.

Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
void complete(
	DOFOperation operation,
	DOFException exception
)

Parameters

operation
Type: org.opendof.core.oalDOFOperation
The operation that has completed. This will never be null.

NOTE: It is possible to extend the time for the operation by calling DOFOperation.setTimeout(int) . If an operation is extended, complete() will be called again.

exception
Type: org.opendof.core.oalDOFException
An exception which caused completion of the operation (typically DOFErrorException.TIMEOUT or DOFException.FAILED ). If null, the operation completed normally.

NOTE: Normal completion is not the same as "success." Even if the operation completed "normally", the Provider may still have returned an exception that was received in one of the other methods of this OperationListener.

Remarks

Operation completed. This method is called when the operation completes and is no longer in effect.
See Also

Reference