KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > server > framework > AceInputFilterInterface


1 package com.quikj.server.framework;
2
3 public interface AceInputFilterInterface
4 {
5     public static final int CONTINUE_RECEIVING = 1;
6     public static final int SEND_MESSAGE = 2;
7     public static final int RESET_BUFFER = 3;
8
9     public abstract int processMessage (byte[] buffer, int offset, int length);
10     public abstract int numberOfBytesToRead();
11 }
12
Popular Tags