Uses of Class
com.atlassian.confluence.api.model.journal.JournalEntry
-
Packages that use JournalEntry Package Description com.atlassian.confluence.api.service.journal com.atlassian.confluence.impl.journal Provides implementation of Journal Service.com.atlassian.confluence.impl.search.queue com.atlassian.confluence.internal.search.queue com.atlassian.confluence.internal.search.tasks com.atlassian.confluence.plugins.edgeindex com.atlassian.confluence.search com.atlassian.confluence.search.queue -
-
Uses of JournalEntry in com.atlassian.confluence.api.service.journal
Methods in com.atlassian.confluence.api.service.journal that return types with arguments of type JournalEntry Modifier and Type Method Description Iterable<JournalEntry>
JournalService. peek(@NonNull JournalIdentifier journalId, int maxEntries)
Return a copy of journal entries that are waiting to be processed.Methods in com.atlassian.confluence.api.service.journal with parameters of type JournalEntry Modifier and Type Method Description long
JournalService. enqueue(@NonNull JournalEntry entry)
Adds the given entry to a journal.Method parameters in com.atlassian.confluence.api.service.journal with type arguments of type JournalEntry 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 JournalEntry in com.atlassian.confluence.impl.journal
Methods in com.atlassian.confluence.impl.journal that return types with arguments of type JournalEntry Modifier and Type Method Description Iterable<JournalEntry>
DefaultJournalService. peek(@NonNull JournalIdentifier journalId, int maxEntries)
Methods in com.atlassian.confluence.impl.journal with parameters of type JournalEntry Modifier and Type Method Description long
DefaultJournalService. enqueue(@NonNull JournalEntry entry)
Method parameters in com.atlassian.confluence.impl.journal with type arguments of type JournalEntry Modifier and Type Method Description <V> V
DefaultJournalService. processEntries(@NonNull JournalIdentifier journalId, int maxEntries, @NonNull com.google.common.base.Function<Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
-
Uses of JournalEntry in com.atlassian.confluence.impl.search.queue
Methods in com.atlassian.confluence.impl.search.queue with parameters of type JournalEntry Modifier and Type Method Description protected ConfluenceIndexTask
ChangeIndexTaskQueue. toTask(JournalEntry entry)
protected ConfluenceIndexTask
ContentIndexTaskQueue. toTask(JournalEntry entry)
-
Uses of JournalEntry in com.atlassian.confluence.internal.search.queue
Methods in com.atlassian.confluence.internal.search.queue that return types with arguments of type JournalEntry Modifier and Type Method Description protected abstract Optional<JournalEntry>
AbstractJournalIndexTaskQueue. toEntry(T task)
Convert a task into a journal entry.protected Optional<JournalEntry>
JournalIndexTaskQueue. toEntry(ConfluenceIndexTask task)
Converts an ConfluenceIndexTask to a JournalEntry.Methods in com.atlassian.confluence.internal.search.queue with parameters of type JournalEntry Modifier and Type Method Description protected @Nullable Searchable
JournalIndexTaskQueue. getSearchableFromEntry(JournalEntry entry)
protected abstract T
AbstractJournalIndexTaskQueue. toTask(JournalEntry entry)
Convert an entry to a task. -
Uses of JournalEntry in com.atlassian.confluence.internal.search.tasks
-
Uses of JournalEntry in com.atlassian.confluence.plugins.edgeindex
Methods in com.atlassian.confluence.plugins.edgeindex that return types with arguments of type JournalEntry Modifier and Type Method Description default Optional<JournalEntry>
EdgeIndexTask. convertToJournalEntry(JournalIdentifier journalIdentifier)
This default method returns an emptyOptional
object because an index task for an edge will be serialised and stored as the entry message when being queued. -
Uses of JournalEntry in com.atlassian.confluence.search
Methods in com.atlassian.confluence.search that return types with arguments of type JournalEntry Modifier and Type Method Description Optional<JournalEntry>
ConvertibleToJournalEntry. convertToJournalEntry(JournalIdentifier journalId)
Convert to journal entry. -
Uses of JournalEntry in com.atlassian.confluence.search.queue
Methods in com.atlassian.confluence.search.queue that return types with arguments of type JournalEntry Modifier and Type Method Description static Optional<JournalEntry>
JournalEntryFactory. createJournalEntry(JournalIdentifier journalId, JournalEntryType journalEntryType, String message)
-