Skip navigation links


org.identityconnectors.framework.common.objects
Interface SyncResultsHandler


public interface SyncResultsHandler

Callback interface that an application implements in order to handle results from SyncApiOp in a stream-processing fashion.


Method Summary
 boolean handle(SyncDelta delta)
          Called to handle a delta in the stream.

 

Method Detail

handle

boolean handle(SyncDelta delta)
Called to handle a delta in the stream. The Connector framework will call this method multiple times, once for each result. Although this method is callback, the framework will invoke it synchronously. Thus, the framework guarantees that once an application's call to SyncApiOp#sync() returns, the framework will no longer call this method to handle results from that sync() operation.
Parameters:
delta - The change
Returns:
True iff the application wants to continue processing more results.
Throws:
java.lang.RuntimeException - If the application encounters an exception. This will stop iteration and the exception will propagate to the application.

Skip navigation links


Copyright © 2011, Oracle and/or its affiliates. All rights reserved.