Interface ChangelogEntryListener
-
@Extensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface ChangelogEntryListener
This interface defines a set of methods that will be invoked when an intermediate response is returned in the course of processing a get changelog batch extended operation. It may be used to process changelog entries as they are returned by the server rather than accessing them in a list when the extended result has been received.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds
package structure, are only supported for use against Ping Identity, UnboundID, and Nokia/Alcatel-Lucent 8661 server products. These classes provide support for proprietary functionality or for external specifications that are not considered stable or mature enough to be guaranteed to work in an interoperable way with other types of LDAP servers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleChangelogEntry(ChangelogEntryIntermediateResponse ir)
Performs any processing necessary for a changelog entry intermediate response returned by the server.void
handleMissingChangelogEntries(MissingChangelogEntriesIntermediateResponse ir)
Performs any processing necessary for a missing changelog entries intermediate response returned by the server.void
handleOtherIntermediateResponse(IntermediateResponse ir)
Performs any processing necessary for some other type of intermediate response returned during processing for a get changelog batch extended operation.
-
-
-
Method Detail
-
handleChangelogEntry
void handleChangelogEntry(@NotNull ChangelogEntryIntermediateResponse ir)
Performs any processing necessary for a changelog entry intermediate response returned by the server.- Parameters:
ir
- The changelog entry intermediate response that was returned by the server.
-
handleMissingChangelogEntries
void handleMissingChangelogEntries(@NotNull MissingChangelogEntriesIntermediateResponse ir)
Performs any processing necessary for a missing changelog entries intermediate response returned by the server.- Parameters:
ir
- The missing changelog entries intermediate response that was returned by the server.
-
handleOtherIntermediateResponse
void handleOtherIntermediateResponse(@NotNull IntermediateResponse ir)
Performs any processing necessary for some other type of intermediate response returned during processing for a get changelog batch extended operation. This method may do nothing if this implementation does not provide support for any other types of intermediate responses.- Parameters:
ir
- The generic entry intermediate response that was returned by the server.
-
-