Mercurial > hg > FederatedLinda
view src/fdl/PSXLindaInterface.java @ 20:a0fd653d1121
Debug Client and Meta Engine for logging.
author | kono |
---|---|
date | Tue, 19 Aug 2008 06:26:20 +0900 |
parents | 0243987383b7 |
children | b4fd7fb9135a |
line wrap: on
line source
package fdl; import java.io.IOException; import java.nio.ByteBuffer; public interface PSXLindaInterface { public PSXReply in(int id) ; public void in(int id, PSXCallback callback); public PSXReply ck(int id) ; public void ck(int id, PSXCallback callback) ; public PSXReply out(int id, ByteBuffer data,int size) ; public PSXReply update(int id, ByteBuffer data,int size) ; public void update(int id, ByteBuffer data,int size,PSXCallback callback) ; public PSXReply rd(int id) ; public void rd(int id, PSXCallback callback) ; public PSXLindaInterface add(PSXLindaInterface linda) ; public void send(ByteBuffer command,ByteBuffer data) throws IOException ; public int sync() throws IOException ; public int sync(long mtime) throws IOException ; }