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.
*/
public class GetRecordsRetrieverDaemon implements Callable<GetRecordsResult> {
@Override
public GetRecordsResult call() throws Exception {
return null;
}
public interface GetRecordsRetriever {
GetRecordsResult getNextRecords(int maxRecords)
}