Package org.jboss.aop

Examples of org.jboss.aop.InstanceAdvised


/*     */
/*     */   protected void setupRemoteFuture(MethodInvocation invocation, RemotableFuture future, InvokerLocator locator) throws Exception
/*     */   {
/* 115 */     GUID futureGUID = new GUID();
/* 116 */     Dispatcher.singleton.registerTarget(futureGUID, future);
/* 117 */     InstanceAdvised ia = generateProxy() ? ProxyFactory.createInterfaceProxy(futureClassGUID, Future.class.getClassLoader(), futureIntf) : (InstanceAdvised)FutureInvocationHandler.createFutureProxy(futureClassGUID, Future.class.getClassLoader(), futureDynamicIntf);
/*     */
/* 120 */     Remoting.makeRemotable(ia, locator, futureGUID);
/* 121 */     future.setRemoteObjectID(futureGUID);
/* 122 */     invocation.addResponseAttachment("ASYNCH_FUTURE", ia);
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.aop.InstanceAdvised

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.