|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JournalIdentifier | |
|---|---|
| com.atlassian.confluence.api.model.journal | |
| com.atlassian.confluence.api.service.journal | |
| com.atlassian.confluence.impl.journal | Provides implementation of Journal Service. |
| com.atlassian.confluence.search.lucene.queue | |
| Uses of JournalIdentifier in com.atlassian.confluence.api.model.journal |
|---|
| Methods in com.atlassian.confluence.api.model.journal that return JournalIdentifier | |
|---|---|
JournalIdentifier |
JournalEntry.getJournalId()
|
| Constructors in com.atlassian.confluence.api.model.journal with parameters of type JournalIdentifier | |
|---|---|
JournalEntry(JournalIdentifier journalId,
java.lang.String type,
java.lang.String message)
Creates a new journal entry for persisting. |
|
JournalEntry(long id,
JournalIdentifier journalId,
java.util.Date creationDate,
java.lang.String type,
java.lang.String message)
Creates a new journal entry describing an entry that has been persisted |
|
| Uses of JournalIdentifier in com.atlassian.confluence.api.service.journal |
|---|
| Methods in com.atlassian.confluence.api.service.journal with parameters of type JournalIdentifier | ||
|---|---|---|
int |
JournalService.countEntries(JournalIdentifier journalId)
Counts the number of entries in a journal. |
|
java.lang.Iterable<JournalEntry> |
JournalService.peek(JournalIdentifier journalId,
int maxEntries)
Return a copy of journal entries that are waiting to be processed. |
|
|
JournalService.processEntries(JournalIdentifier journalId,
int maxEntries,
com.google.common.base.Function<java.lang.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. |
|
void |
JournalService.reset(JournalIdentifier journalId)
Resets the state of the journal so that all entries currently in the journal will be skipped. |
|
| Uses of JournalIdentifier in com.atlassian.confluence.impl.journal |
|---|
| Methods in com.atlassian.confluence.impl.journal that return JournalIdentifier | |
|---|---|
JournalIdentifier |
JournalEntry.getJournalId()
|
JournalIdentifier |
JournalIdentifierUserType.nullSafeGet(java.sql.ResultSet rs,
java.lang.String[] columns,
java.lang.Object owner)
|
| Methods in com.atlassian.confluence.impl.journal with parameters of type JournalIdentifier | ||
|---|---|---|
int |
JournalManager.countEntries(JournalIdentifier journalId)
Counts the number of entries in a journal. |
|
int |
DefaultJournalService.countEntries(JournalIdentifier journalId)
|
|
int |
DefaultJournalManager.countEntries(JournalIdentifier journalId)
|
|
int |
JournalDao.countEntries(JournalIdentifier journalId,
long afterId,
long ignoreWithinMillis)
Counts the number of entries in a journal. |
|
int |
HibernateJournalDao.countEntries(JournalIdentifier journalId,
long afterId,
long ignoreWithinMillis)
|
|
java.util.List<JournalEntry> |
JournalDao.findEntries(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. |
|
java.util.List<JournalEntry> |
HibernateJournalDao.findEntries(JournalIdentifier journalId,
long afterId,
long ignoreWithinMillis,
int maxEntries)
|
|
com.atlassian.fugue.Option<JournalEntry> |
JournalDao.findLatestEntry(JournalIdentifier journalId,
long ignoreWithinMillis)
Finds the latest journal entry if any. |
|
com.atlassian.fugue.Option<JournalEntry> |
HibernateJournalDao.findLatestEntry(JournalIdentifier journalId,
long ignoreWithinMillis)
|
|
com.atlassian.fugue.Option<JournalEntry> |
JournalDao.findMostRecentEntryByMessage(JournalIdentifier journalId,
java.lang.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(JournalIdentifier journalId,
java.lang.String message)
|
|
long |
JournalStateStore.getMostRecentId(JournalIdentifier journalId)
Returns the most recent id for a journal or 0 if no id has been stored yet. |
|
long |
FilesystemJournalStateStore.getMostRecentId(JournalIdentifier journalId)
|
|
long |
CachingJournalStateStore.getMostRecentId(JournalIdentifier journalId)
|
|
java.lang.Iterable<JournalEntry> |
JournalManager.peek(JournalIdentifier journalId,
int maxEntries)
Return a copy of journal entries that are waiting to be processed. |
|
java.lang.Iterable<JournalEntry> |
DefaultJournalService.peek(JournalIdentifier journalId,
int maxEntries)
|
|
java.lang.Iterable<JournalEntry> |
DefaultJournalManager.peek(JournalIdentifier journalId,
int maxEntries)
|
|
|
JournalManager.processEntries(JournalIdentifier journalId,
int maxEntries,
com.google.common.base.Function<java.lang.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. |
|
|
DefaultJournalService.processEntries(JournalIdentifier journalId,
int maxEntries,
com.google.common.base.Function<java.lang.Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
|
|
|
DefaultJournalManager.processEntries(JournalIdentifier journalId,
int maxEntries,
com.google.common.base.Function<java.lang.Iterable<JournalEntry>,EntryProcessorResult<V>> entryProcessor)
|
|
void |
JournalManager.reset(JournalIdentifier journalId)
Resets the state of the journal so that all entries currently in the journal will be skipped. |
|
void |
DefaultJournalService.reset(JournalIdentifier journalId)
|
|
void |
DefaultJournalManager.reset(JournalIdentifier journalId)
|
|
void |
JournalEntry.setJournalId(JournalIdentifier journalId)
|
|
void |
JournalStateStore.setMostRecentId(JournalIdentifier journalId,
long id)
Set the most recent identifier for a journal. |
|
void |
FilesystemJournalStateStore.setMostRecentId(JournalIdentifier journalId,
long id)
|
|
void |
CachingJournalStateStore.setMostRecentId(JournalIdentifier journalId,
long id)
|
|
| Constructors in com.atlassian.confluence.impl.journal with parameters of type JournalIdentifier | |
|---|---|
JournalEntry(JournalIdentifier journalId,
java.lang.String type,
java.lang.String message)
Creates a new journal entry. |
|
| Uses of JournalIdentifier in com.atlassian.confluence.search.lucene.queue |
|---|
| Fields in com.atlassian.confluence.search.lucene.queue declared as JournalIdentifier | |
|---|---|
static JournalIdentifier |
JournalIndexTaskQueue.JOURNAL_ID
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||