|
@@ -42,10 +42,6 @@ public class Invocation {
|
|
|
|
|
|
|
|
private int index = 0;
|
|
private int index = 0;
|
|
|
|
|
|
|
|
-
|
|
|
|
|
- // ----------------------------------------------------------------
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
public Invocation(Object target, Long proxyMethodKey, Callback callback, Object... args) {
|
|
public Invocation(Object target, Long proxyMethodKey, Callback callback, Object... args) {
|
|
|
this.action = null;
|
|
this.action = null;
|
|
|
this.target = target;
|
|
this.target = target;
|
|
@@ -58,14 +54,10 @@ public class Invocation {
|
|
|
this.args = args;
|
|
this.args = args;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
public Invocation(Object target, Long proxyMethodKey, Callback callback) {
|
|
public Invocation(Object target, Long proxyMethodKey, Callback callback) {
|
|
|
this(target, proxyMethodKey, callback, NULL_ARGS);
|
|
this(target, proxyMethodKey, callback, NULL_ARGS);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // ----------------------------------------------------------------
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
// InvocationWrapper need this constructor
|
|
// InvocationWrapper need this constructor
|
|
|
protected Invocation() {
|
|
protected Invocation() {
|
|
|
this.action = null;
|
|
this.action = null;
|