01: /**
02: * Copyright Mobixess Inc. 2007
03: */package com.mobixess.jodb.core.io.rmi;
04:
05: import java.io.IOException;
06: import java.rmi.Remote;
07:
08: public interface IOTicketRemoteInterface extends Remote {
09: int getTicketIdentity() throws IOException;
10:
11: int fetchRecord(long offset) throws IOException;
12:
13: byte[] getRecordData(long offsetInRecord, int len)
14: throws IOException;
15:
16: void close() throws IOException;
17: }
|