Reverting back to the interface

This commit is contained in:
Sahil Palvia 2017-09-18 15:02:06 -07:00
parent 8ceb5f2492
commit 9def913453

View file

@ -7,9 +7,6 @@ import java.util.concurrent.Callable;
/** /**
* This class uses the GetRecordsRetrievalStrategy class to retrieve the next set of records and update the cache. * This class uses the GetRecordsRetrievalStrategy class to retrieve the next set of records and update the cache.
*/ */
public class GetRecordsRetrieverDaemon implements Callable<GetRecordsResult> { public interface GetRecordsRetriever {
@Override GetRecordsResult getNextRecords(int maxRecords)
public GetRecordsResult call() throws Exception {
return null;
}
} }