link start!
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.tridium.history.io;
|
||||
|
||||
import java.io.DataInput;
|
||||
import java.io.DataOutput;
|
||||
import java.io.IOException;
|
||||
|
||||
public interface RandomAccess extends DataInput, DataOutput {
|
||||
void flush() throws IOException;
|
||||
|
||||
long length() throws IOException;
|
||||
|
||||
long pos() throws IOException;
|
||||
|
||||
void seek(long j) throws IOException;
|
||||
|
||||
void setLength(long j) throws IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user