Package | Description |
---|---|
com.atlassian.confluence.impl.journal |
Provides implementation of Journal Service.
|
Modifier and Type | Method and Description |
---|---|
JournalEntry |
JournalDao.findEntry(long entryId)
Finds the specified journal entry, if it exists.
|
JournalEntry |
HibernateJournalDao.findEntry(long entryId) |
Modifier and Type | Method and Description |
---|---|
List<JournalEntry> |
JournalDao.findEntries(@NonNull JournalIdentifier journalId,
long afterId,
long ignoreWithinMillis,
int maxEntries)
Finds journal entries that were added after an entry with the given id
but earlier than given milliseconds ago.
|
List<JournalEntry> |
HibernateJournalDao.findEntries(@NonNull JournalIdentifier journalId,
long afterId,
long ignoreWithinMillis,
int maxEntries) |
com.atlassian.fugue.Option<JournalEntry> |
JournalDao.findLatestEntry(@NonNull JournalIdentifier journalId,
long ignoreWithinMillis)
Finds the latest journal entry if any.
|
com.atlassian.fugue.Option<JournalEntry> |
HibernateJournalDao.findLatestEntry(@NonNull JournalIdentifier journalId,
long ignoreWithinMillis) |
com.atlassian.fugue.Option<JournalEntry> |
JournalDao.findMostRecentEntryByMessage(@NonNull JournalIdentifier journalId,
String message)
Finds the most recent journal entry (if any) for the given journal that
exactly matches the given journal entry message.
|
com.atlassian.fugue.Option<JournalEntry> |
HibernateJournalDao.findMostRecentEntryByMessage(@NonNull JournalIdentifier journalId,
String message) |
Iterable<JournalEntry> |
JournalManager.peek(@NonNull JournalIdentifier journalId,
int maxEntries)
Return a copy of journal entries that are waiting to be processed.
|
Iterable<JournalEntry> |
DefaultJournalManager.peek(@NonNull JournalIdentifier journalId,
int maxEntries) |
Modifier and Type | Method and Description |
---|---|
long |
JournalDao.enqueue(@NonNull JournalEntry entry)
Adds the given entry to a journal.
|
long |
JournalManager.enqueue(@NonNull JournalEntry entry)
Adds the given entry to a journal.
|
long |
DefaultJournalManager.enqueue(@NonNull JournalEntry entry) |
long |
HibernateJournalDao.enqueue(@NonNull JournalEntry entry) |
void |
HibernateJournalDao.queueWithCustomCreationDate(JournalEntry entry,
Date creationDate) |
Modifier and Type | Method and Description |
---|---|
<V> V |
JournalManager.processEntries(@NonNull JournalIdentifier journalId,
int maxEntries,
com.google.common.base.Function<Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
Deprecated.
since 7.0.1. Use
JournalManager.processNewEntries(JournalIdentifier, int, Function) |
Copyright © 2003–2019 Atlassian. All rights reserved.