source: DCWoRMS/trunk/src/simulator/workload/reader/JobReader.java @ 477

Revision 477, 315 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package simulator.workload.reader;
2
3import java.io.IOException;
4
5public interface JobReader <Job> {
6       
7        public void close() throws IOException;
8       
9        public Job read() throws IOException;
10       
11        public String readRaw() throws IOException;
12       
13        public void reset() throws IOException;
14       
15        public String getCurrentPosition();
16}
Note: See TracBrowser for help on using the repository browser.