Mercurial > hg > FederatedLinda
comparison src/fdl/NullIOHandlerHook.java @ 22:56e015e8f5dc
Testing TestLindaServer
author | kono |
---|---|
date | Tue, 19 Aug 2008 16:02:48 +0900 |
parents | 0243987383b7 |
children |
comparison
equal
deleted
inserted
replaced
21:fac6e0073b1a | 22:56e015e8f5dc |
---|---|
3 import java.nio.ByteBuffer; | 3 import java.nio.ByteBuffer; |
4 import java.nio.channels.SelectionKey; | 4 import java.nio.channels.SelectionKey; |
5 | 5 |
6 public class NullIOHandlerHook implements IOHandlerHook { | 6 public class NullIOHandlerHook implements IOHandlerHook { |
7 | 7 |
8 @Override | |
9 public void checkHook(SelectionKey key, int id, int seq, char mode) { | 8 public void checkHook(SelectionKey key, int id, int seq, char mode) { |
10 } | 9 } |
11 | 10 |
12 @Override | |
13 public void closeHook(SelectionKey key) { | 11 public void closeHook(SelectionKey key) { |
14 } | 12 } |
15 | 13 |
16 @Override | |
17 public void inHook(SelectionKey key, int id, int seq, char mode) { | 14 public void inHook(SelectionKey key, int id, int seq, char mode) { |
18 } | 15 } |
19 | 16 |
20 @Override | |
21 public void outHook(SelectionKey key, int id, int seq, char mode, | 17 public void outHook(SelectionKey key, int id, int seq, char mode, |
22 ByteBuffer data) { | 18 ByteBuffer data) { |
23 } | 19 } |
24 | 20 |
25 @Override | |
26 public void waitReadHook(SelectionKey key, int id, int seq, char mode) { | 21 public void waitReadHook(SelectionKey key, int id, int seq, char mode) { |
27 } | 22 } |
28 | 23 |
29 | 24 |
30 } | 25 } |