Mercurial > hg > FederatedLinda
annotate src/fdl/PSXLindaInterface.java @ 19:0243987383b7
Meta Protocol Engine and sample implementation of event logger.
ComDebug_Client needs fixes.
author | kono |
---|---|
date | Tue, 19 Aug 2008 05:33:32 +0900 |
parents | aced4bfc15af |
children | b4fd7fb9135a |
rev | line source |
---|---|
15 | 1 package fdl; |
2 | |
3 import java.io.IOException; | |
4 import java.nio.ByteBuffer; | |
5 | |
6 public interface PSXLindaInterface { | |
7 | |
8 | |
9 public PSXReply in(int id) ; | |
10 | |
11 public void in(int id, PSXCallback callback); | |
12 | |
13 public PSXReply ck(int id) ; | |
14 | |
15 public void ck(int id, PSXCallback callback) ; | |
16 | |
17 public PSXReply out(int id, ByteBuffer data,int size) ; | |
18 | |
19 public PSXReply update(int id, ByteBuffer data,int size) ; | |
20 | |
21 public void update(int id, ByteBuffer data,int size,PSXCallback callback) ; | |
22 | |
23 public PSXReply rd(int id) ; | |
24 | |
25 public void rd(int id, PSXCallback callback) ; | |
26 | |
19
0243987383b7
Meta Protocol Engine and sample implementation of event logger.
kono
parents:
15
diff
changeset
|
27 public PSXLindaInterface add(PSXLindaInterface linda) ; |
15 | 28 |
29 public void send(ByteBuffer command,ByteBuffer data) throws IOException ; | |
30 | |
31 public int sync() throws IOException ; | |
32 | |
33 public int sync(long mtime) throws IOException ; | |
34 } |