fix javadoc
This commit is contained in:
parent
2451ef06f5
commit
120a9e915d
1 changed files with 2 additions and 3 deletions
|
@ -4,8 +4,7 @@ package org.xbib.event.wal;
|
|||
* <p>
|
||||
* Provides a callback mechanism by which applicable listeners can be notified
|
||||
* when a WriteAheadRepository is synched (via the
|
||||
* {@link WriteAheadRepository#checkpoint()}
|
||||
* method) or one of its partitions is
|
||||
* {@link WriteAheadRepository#checkpoint()} method) or one of its partitions is
|
||||
* synched via
|
||||
* {@link WriteAheadRepository#update(java.util.Collection, boolean)} with a
|
||||
* value of <code>true</code> for the second argument.
|
||||
|
@ -45,7 +44,7 @@ public interface SyncListener {
|
|||
*/
|
||||
void onGlobalSync();
|
||||
|
||||
public static final SyncListener NOP_SYNC_LISTENER = new SyncListener() {
|
||||
SyncListener NOP_SYNC_LISTENER = new SyncListener() {
|
||||
@Override
|
||||
public void onSync(int partitionIndex) {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue