Mercurial > hg > FederatedLinda
view src/fdl/PSXLinda.java @ 50:0025a8582d5f
Federated Linda Ring three
author | axmo |
---|---|
date | Fri, 12 Dec 2008 19:38: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); }