IFileDB.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.data.experiment.extdata;
00002
00003 import java.io.IOException;
00004
00005 import edu.rice.cs.hpc.data.util.LargeByteBuffer;
00006
00007 public interface IFileDB
00008 {
00009 public void open(String filename, int headerSize, int recordSize) throws IOException;
00010
00011 public int getNumberOfRanks();
00012 public String[] getRankLabels();
00013 public long[] getOffsets();
00014
00015 public LargeByteBuffer getMasterBuffer();
00016
00017 public int getParallelismLevel();
00018 public void dispose();
00019 }