Package net.handle.hdllib
Interface ReplicationDaemonInterface
-
public interface ReplicationDaemonInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addQueueListener(TransactionQueueListener l)
java.util.Iterator<byte[]>
handleIterator()
java.util.Iterator<byte[]>
handleIteratorFrom(byte[] startingPoint, boolean inclusive)
java.util.Iterator<byte[]>
naIterator()
java.util.Iterator<byte[]>
naIteratorFrom(byte[] startingPoint, boolean inclusive)
void
pauseReplication()
void
removeQueueListener(TransactionQueueListener l)
net.cnri.util.StreamTable
replicationStatus()
void
unpauseReplication()
-
-
-
Method Detail
-
replicationStatus
net.cnri.util.StreamTable replicationStatus() throws HandleException
- Throws:
HandleException
-
pauseReplication
void pauseReplication()
-
unpauseReplication
void unpauseReplication()
-
handleIterator
java.util.Iterator<byte[]> handleIterator() throws HandleException
- Throws:
HandleException
-
naIterator
java.util.Iterator<byte[]> naIterator() throws HandleException
- Throws:
HandleException
-
handleIteratorFrom
java.util.Iterator<byte[]> handleIteratorFrom(byte[] startingPoint, boolean inclusive) throws HandleException
- Throws:
HandleException
-
naIteratorFrom
java.util.Iterator<byte[]> naIteratorFrom(byte[] startingPoint, boolean inclusive) throws HandleException
- Throws:
HandleException
-
addQueueListener
void addQueueListener(TransactionQueueListener l)
-
removeQueueListener
void removeQueueListener(TransactionQueueListener l)
-
-