comparison src/fdl/NullIOHandlerHook.java @ 19:0243987383b7

Meta Protocol Engine and sample implementation of event logger. ComDebug_Client needs fixes.
author kono
date Tue, 19 Aug 2008 05:33:32 +0900
parents
children 56e015e8f5dc
comparison
equal deleted inserted replaced
18:2cbd98257d61 19:0243987383b7
1 package fdl;
2
3 import java.nio.ByteBuffer;
4 import java.nio.channels.SelectionKey;
5
6 public class NullIOHandlerHook implements IOHandlerHook {
7
8 @Override
9 public void checkHook(SelectionKey key, int id, int seq, char mode) {
10 }
11
12 @Override
13 public void closeHook(SelectionKey key) {
14 }
15
16 @Override
17 public void inHook(SelectionKey key, int id, int seq, char mode) {
18 }
19
20 @Override
21 public void outHook(SelectionKey key, int id, int seq, char mode,
22 ByteBuffer data) {
23 }
24
25 @Override
26 public void waitReadHook(SelectionKey key, int id, int seq, char mode) {
27 }
28
29
30 }