package com.tridium.eas.cost.util; import java.io.IOException; public interface Result { Record extra(Record record, int i) throws IOException; Record first(Record record) throws IOException; long getSize(); Record next(Record record) throws IOException; }