Uses of Class
com.atlassian.confluence.api.service.journal.EntryProcessorResult
-
Packages that use EntryProcessorResult Package Description com.atlassian.confluence.api.service.journal com.atlassian.confluence.impl.journal Provides implementation of Journal Service. -
-
Uses of EntryProcessorResult in com.atlassian.confluence.api.service.journal
Methods in com.atlassian.confluence.api.service.journal that return EntryProcessorResult Modifier and Type Method Description static <V> EntryProcessorResult<V>
EntryProcessorResult. failure(@Nullable V result, long failedEntryId)
Create a result after a processing failure.static <V> EntryProcessorResult<V>
EntryProcessorResult. partial(@Nullable V result, long lastSuccessfulId)
Create a result after having successfully processed some of the entries.static <V> EntryProcessorResult<V>
EntryProcessorResult. success(@Nullable V result)
Create result after having successfully processed all entries.Method parameters in com.atlassian.confluence.api.service.journal with type arguments of type EntryProcessorResult Modifier and Type Method Description <V> V
JournalService. processEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull com.google.common.base.Function<Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
Deprecated.since 7.0.1.default <V> V
JournalService. processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
Processes journal entries that were added since the last time this method was called for this journal on this cluster node. -
Uses of EntryProcessorResult in com.atlassian.confluence.impl.journal
Method parameters in com.atlassian.confluence.impl.journal with type arguments of type EntryProcessorResult Modifier and Type Method Description <V> V
DefaultJournalManager. processEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull com.google.common.base.Function<Iterable<JournalEntry>,@NonNull EntryProcessorResult<V>> entryProcessor)
Deprecated.since 7.0.1.<V> V
DefaultJournalService. processEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull com.google.common.base.Function<Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
<V> V
JournalManager. processEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull com.google.common.base.Function<Iterable<JournalEntry>,@NonNull EntryProcessorResult<V>> entryProcessor)
Deprecated.since 7.0.1.<V> V
DefaultJournalManager. processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>,@NonNull EntryProcessorResult<V>> entryProcessor)
default <V> V
JournalManager. processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>,@NonNull EntryProcessorResult<V>> entryProcessor)
Processes journal entries that were added since the last time this method was called for this journal on this cluster node.
-