Mercurial > hg > FederatedLinda
view src/fdl/NullIOHandlerHook.java @ 22:56e015e8f5dc
Testing TestLindaServer
author | kono |
---|---|
date | Tue, 19 Aug 2008 16:02:48 +0900 |
parents | 0243987383b7 |
children |
line wrap: on
line source
package fdl; import java.nio.ByteBuffer; import java.nio.channels.SelectionKey; public class NullIOHandlerHook implements IOHandlerHook { public void checkHook(SelectionKey key, int id, int seq, char mode) { } public void closeHook(SelectionKey key) { } public void inHook(SelectionKey key, int id, int seq, char mode) { } public void outHook(SelectionKey key, int id, int seq, char mode, ByteBuffer data) { } public void waitReadHook(SelectionKey key, int id, int seq, char mode) { } }