예제 #1
0
 /**
  * Attempts to flush and force all dirty data in Persistit by invoking {@link Persistit#flush} and
  * {@link Persistit#force}.
  *
  * @throws RemoteException
  */
 @Override
 public void flushAndForce() throws RemoteException {
   try {
     _persistit.flush();
     _persistit.force();
   } catch (final PersistitException e) {
     throw new WrappedRemoteException(e);
   }
 }