333334335336337338339340341342343
public Client call() throws Exception { return initialize(); } }); proxyfiedClient = (Client) Proxy.newProxyInstance(Client.class.getClassLoader(), new Class[]{Client.class}, new GenericInvocationHandler(future)); } else { client = initialize(); } }
6465666768697071727374
public Node call() throws Exception { return initialize(); } }); proxyfiedNode = (Node) Proxy.newProxyInstance(Node.class.getClassLoader(), new Class[]{Node.class}, new GenericInvocationHandler(nodeFuture)); } else { node = initialize(); } }