source:
xssim/trunk/src/simulator/workload/reader/JobReader.java
@
104
Revision 104, 315 bytes checked in by wojtekp, 13 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | package simulator.workload.reader; |
2 | |
3 | import java.io.IOException; |
4 | |
5 | public 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.