This commit is contained in:
wentch
2015-12-23 10:38:24 +08:00
parent b5907035ce
commit 06b6aad6e2
3 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ public final class SncpClient {
protected final Type[] paramTypes;
protected final Attribute[] paramAttrs; // 为null表示无SncpCall处理index=0固定为null, 其他为参数标记的SncpCall回调方法
protected final Attribute[] paramAttrs; // 为null表示无DynCall处理index=0固定为null, 其他为参数标记的DynCall回调方法
protected final int handlerFuncParamIndex;

View File

@@ -120,7 +120,7 @@ public final class SncpDynServlet extends SncpServlet {
@Resource
protected BsonConvert convert;
protected org.redkale.util.Attribute[] paramAttrs; // 为null表示无SncpCall处理index=0固定为null, 其他为参数标记的SncpCall回调方法
protected org.redkale.util.Attribute[] paramAttrs; // 为null表示无DynCall处理index=0固定为null, 其他为参数标记的DynCall回调方法
protected java.lang.reflect.Type[] paramTypes; //index=0表示返回参数的type void的返回参数类型为null

View File

@@ -10,7 +10,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
import org.redkale.util.*;
/**
* 参数回写, 当Service的方法需要更改参数对象内部的数据时需要使用SncpCall
* 参数回写, 当Service的方法需要更改参数对象内部的数据时需要使用DynCall
*
* @see http://www.redkale.org
* @author zhangjx