Interface InstanceRequest<P extends BaseProxy,T>
-
- Type Parameters:
P- the instance type of BaseProxyT- the type eventually returned by the method invocation
public interface InstanceRequest<P extends BaseProxy,T>Used to call instance methods. Note that this does not extendRequest— rather it vends one. There is no way to get an instance method'sRequest.fire()without assigning an instance by callingusing(P).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Request<T>using(P instanceObject)Provide the instance on which the request will be invoked.
-