Mercurial > hg > FederatedLinda
view src/fdl/PSXLinda.java @ 37:2a366abc3f1f
*** empty log message ***
author | kono |
---|---|
date | Sun, 24 Aug 2008 21:21:40 +0900 |
parents | d7d70edc9c7c |
children | a1d796c0e975 |
line wrap: on
line source
package fdl; import java.io.IOException; import java.nio.ByteBuffer; public interface PSXLinda { 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) ; public PSXReply update(int id, ByteBuffer data) ; public void update(int id, ByteBuffer data,PSXCallback callback) ; public PSXReply rd(int id) ; public void rd(int id, PSXCallback callback) ; public PSXLinda add(PSXLinda linda) ; public int sync() throws IOException ; public int sync(long mtime) throws IOException ; public void send(ByteBuffer command, ByteBuffer data); }