Uses of Interface
org.forgerock.opendj.ldif.ChangeRecordReader
Packages that use ChangeRecordReader
-
Uses of ChangeRecordReader in org.forgerock.opendj.ldif
Classes in org.forgerock.opendj.ldif that implement ChangeRecordReaderModifier and TypeClassDescriptionfinal classAn LDIF change record reader reads change records using the LDAP Data Interchange Format (LDIF) from a user defined source.Methods in org.forgerock.opendj.ldif that return ChangeRecordReaderModifier and TypeMethodDescriptionstatic ChangeRecordReaderLdif.diff(EntryReader source, EntryReader target) Compares the content ofsourceto the content oftargetand returns the differences in a change record reader.static ChangeRecordReaderLdif.diff(EntryReader source, EntryReader target, Options options) Compares the content ofsourceto the content oftargetand returns the differences in a change record reader.static ChangeRecordReaderLdif.newChangeRecordReader(Iterable<? extends ChangeRecord> changes) Returns a change record reader over the provided change record collection.static ChangeRecordReaderLdif.newChangeRecordReader(Iterator<? extends ChangeRecord> changes) Returns a change record reader over the provided change record iterator.Methods in org.forgerock.opendj.ldif with parameters of type ChangeRecordReaderModifier and TypeMethodDescriptionstatic ChangeRecordWriterLdif.copyTo(ChangeRecordReader input, ChangeRecordWriter output) Copies the content ofinputtooutput.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch, RejectedChangeRecordListener listener) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.Method parameters in org.forgerock.opendj.ldif with type arguments of type ChangeRecordReaderModifier and TypeMethodDescriptionstatic io.reactivex.rxjava3.core.Flowable<ChangeRecord>Ldif.newChangeRecordPublisher(io.reactivex.rxjava3.functions.Supplier<? extends ChangeRecordReader> factory) Returns aFlowableview of aChangeRecordReader, creating a new reader for each subscriber.