0
|
1 package fdl;
|
|
2
|
|
3 import java.io.IOException;
|
|
4 import java.nio.ByteBuffer;
|
|
5
|
25
|
6 public interface PSXLinda {
|
0
|
7
|
|
8
|
25
|
9 public PSXReply in(int id) ;
|
0
|
10
|
25
|
11 public void in(int id, PSXCallback callback);
|
|
12
|
|
13 public PSXReply ck(int id) ;
|
0
|
14
|
25
|
15 public void ck(int id, PSXCallback callback) ;
|
0
|
16
|
25
|
17 public PSXReply out(int id, ByteBuffer data) ;
|
0
|
18
|
25
|
19 public PSXReply update(int id, ByteBuffer data) ;
|
0
|
20
|
25
|
21 public void update(int id, ByteBuffer data,PSXCallback callback) ;
|
0
|
22
|
25
|
23 public PSXReply rd(int id) ;
|
0
|
24
|
25
|
25 public void rd(int id, PSXCallback callback) ;
|
0
|
26
|
25
|
27 public PSXLinda add(PSXLinda linda) ;
|
0
|
28
|
25
|
29 public int sync() throws IOException ;
|
0
|
30
|
25
|
31 public int sync(long mtime) throws IOException ;
|
26
|
32
|
|
33 public void send(ByteBuffer command, ByteBuffer data);
|
0
|
34 }
|