This commit is contained in:
RedKale
2016-04-13 13:37:09 +08:00
parent 579da82c4d
commit 4f1c7c5d0f

View File

@@ -5,9 +5,9 @@
*/ */
package org.redkale.net; package org.redkale.net;
import java.nio.*; import java.nio.ByteBuffer;
import java.nio.channels.*; import java.nio.channels.CompletionHandler;
import java.util.function.*; import java.util.function.BiConsumer;
/** /**
* *
@@ -15,6 +15,7 @@ import java.util.function.*;
* 详情见: http://www.redkale.org * 详情见: http://www.redkale.org
* *
* @author zhangjx * @author zhangjx
* @param <C> Context的子类型
* @param <R> Request的子类型 * @param <R> Request的子类型
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")