comparison src/org/dancres/blitz/entry/EntryReaper.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.entry;
2
3 import java.io.IOException;
4
5 /**
6 Invoked on by a LeaseTracker in response to a call to bringOutTheDead
7
8 @see org.dancres.blitz.entry.LeaseTracker
9 */
10 public interface EntryReaper {
11 /**
12 @param aLocator TupleLocator which will return a sequence of
13 <code>UIDImpl</code>s for <code>EntrySleeve</code>s which are
14 <em>likely</em> (not guarenteed, so the user should check explicitly
15 using an appropriate timestamp
16 */
17 public void clean(TupleLocator aLocator) throws IOException;
18 }