Package com.kurento.tool.rom.client

Examples of com.kurento.tool.rom.client.RemoteObjectInvocationHandler


      processedParam = ((RemoteObject) param).getObjectRef();
    } else if (param instanceof Proxy) {

      InvocationHandler handler = Proxy.getInvocationHandler(param);
      if (handler instanceof RemoteObjectInvocationHandler) {
        RemoteObjectInvocationHandler roHandler = (RemoteObjectInvocationHandler) handler;
        processedParam = roHandler.getRemoteObject().getObjectRef();
      } else {
        throw new ProtocolException(
            "Only proxies from remote objects are allowed, but found one with InvocationHandler "
                + handler);
      }
View Full Code Here

TOP

Related Classes of com.kurento.tool.rom.client.RemoteObjectInvocationHandler

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.