.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Called to handle a delta in the stream.

Namespace: Org.IdentityConnectors.Framework.Common.Objects
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public delegate bool SyncResultsHandler(
	SyncDelta delta
)

Return Value

Type: Boolean
True iff the application wants to continue processing more results.

Remarks

Will be called multiple times, once for each result. Although a callback, this is still invoked synchronously. That is, it is guaranteed that following a call to Sync(ObjectClass, SyncToken, SyncResultsHandler, OperationOptions) no more invocations to [!:Handle(SyncDelta)] will be performed.

Exceptions

ExceptionCondition
System..::..ExceptionIf the application encounters an exception. This will stop the interation and the exception will be propogated back to the application.

See Also