Package net.sf.lipermi.call

Examples of net.sf.lipermi.call.RemoteCall


       
        IRemoteMessage remoteMessage = filter.readObject(objFromStream);
       
        if (remoteMessage instanceof RemoteCall) {

          final RemoteCall remoteCall = (RemoteCall) remoteMessage;
          if (remoteCall.getArgs() != null) {
            for (int n = 0; n < remoteCall.getArgs().length; n++) {
              Object arg = remoteCall.getArgs()[n];
              if (arg instanceof RemoteInstance) {
                RemoteInstance remoteInstance = (RemoteInstance) arg;
                remoteCall.getArgs()[n] = getProxyFromRemoteInstance(remoteInstance);
              }
            }
          }
         
          Thread delegator = new Thread(new Runnable() {
View Full Code Here


      }
    }

    String methodId = method.toString().substring(15);
   
    IRemoteMessage remoteCall = new RemoteCall(remoteInstance, methodId, args, id);
    sendMessage(remoteCall);
   
    RemoteReturn remoteReturn = null;
   
    boolean bReturned = false;
View Full Code Here

TOP

Related Classes of net.sf.lipermi.call.RemoteCall

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.