Uses of Class
com.atlassian.confluence.api.service.journal.EntryProcessorResult
Packages that use EntryProcessorResult
Package
Description
Provides implementation of Journal Service.
- 
Uses of EntryProcessorResult in com.atlassian.confluence.api.service.journalMethods in com.atlassian.confluence.api.service.journal that return EntryProcessorResultModifier and TypeMethodDescriptionstatic <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 EntryProcessorResultModifier and TypeMethodDescription<V> VJournalService.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.indexMethod parameters in com.atlassian.confluence.impl.index with type arguments of type EntryProcessorResultModifier and TypeMethodDescription<V> VDefaultIndexJournalService.processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>, EntryProcessorResult<V>> entryProcessor) 
- 
Uses of EntryProcessorResult in com.atlassian.confluence.impl.journalMethod parameters in com.atlassian.confluence.impl.journal with type arguments of type EntryProcessorResultModifier and TypeMethodDescription<V> VDefaultJournalManager.processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>, @NonNull EntryProcessorResult<V>> entryProcessor) <V> VDefaultJournalService.processNewEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull Function<Iterable<JournalEntry>, EntryProcessorResult<V>> entryProcessor) <V> VJournalManager.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.