Examples of call()


Examples of org.eclipse.orion.server.git.jobs.StashApplyCommand.call()

        }

        applyCommand.setStashRef(stashRef.getStringRef());
        applyCommand.setApplyUntracked(applyUntracked);
        applyCommand.setApplyIndex(applyIndex);
        applyCommand.call();

      } else {

        /* git stash pop */
        applyCommand.setApplyUntracked(applyUntracked);
 
View Full Code Here

Examples of org.eclipse.rap.rwt.remote.RemoteObject.call()

  void renderDone( RefreshComposite composite ) {
    RefreshAdapter adapter = composite.getAdapter( RefreshAdapter.class );
    boolean isDone = adapter.isDone();
    if( WidgetLCAUtil.hasChanged( composite, PROPERTY_DONE, Boolean.valueOf( isDone ) ) ) {
      RemoteObject remoteObject = RemoteObjectFactory.getRemoteObject( composite );
      remoteObject.call( METHOD_DONE, null );
      adapter.setDone( false );
    }
  }

  void renderListenToRefresh( RefreshComposite composite ) {
View Full Code Here

Examples of org.erlide.runtime.api.IOtpRpc.call()

                }
            }

            final OtpErlangList nodesList = new OtpErlangList(
                    nodeAtoms.toArray(new OtpErlangAtom[nodeAtoms.size()]));
            final OtpErlangList procList = (OtpErlangList) backend.call(MODULE_NAME,
                    FUNCTION_NAME, "x", nodesList);
            final TracedProcess[] processes = new TracedProcess[procList.arity()];

            for (int i = 0; i < procList.arity(); i++) {
                final OtpErlangTuple tuple = (OtpErlangTuple) procList.elementAt(i);
View Full Code Here

Examples of org.graylog2.plugin.alarms.callbacks.AlarmCallback.call()

            AbstractAlertCondition.CheckResult checkResult = dummyAlertCondition.runCheck();
            List<AlarmCallbackConfiguration> callConfigurations = alarmCallbackConfigurationService.getForStream(stream);
            if (callConfigurations.size() > 0)
                for (AlarmCallbackConfiguration configuration : callConfigurations) {
                    AlarmCallback alarmCallback = alarmCallbackFactory.create(configuration);
                    alarmCallback.call(stream, checkResult);
                }
            else
                emailAlarmCallback.call(stream, checkResult);

        } catch (AlarmCallbackException | ClassNotFoundException | AlarmCallbackConfigurationException e) {
View Full Code Here

Examples of org.grouplens.lenskit.eval.traintest.SimpleEvaluator.call()

        evalCommand.addMetric(new CoveragePredictMetric())
                   .addMetric(new RMSEPredictMetric())
                   .addMetric(new MAEPredictMetric());


        Table result = evalCommand.call();
        assertThat(result, notNullValue());
        checkResults(result);
    }
}
View Full Code Here

Examples of org.jabsorb.JSONRPCBridge.call()

        if ((method != null) && (method.indexOf('.') < 0)) {
            jsonReq.putOpt("method", "Service" + "." + method);
        }

        // invoke the request
        jsonResp = jsonrpcBridge.call(new Object[] {request}, jsonReq);

        return jsonResp.toString().getBytes("UTF-8");
    }

    protected byte[] handleJSONRPCMethodInvocation(HttpServletRequest request, HttpServletResponse response, JSONObject jsonReq) throws IOException,
View Full Code Here

Examples of org.jaxen.Function.call()

            eachValue = eachParam.evaluate( context );
           
            paramValues.add( eachValue );
        }
       
        return func.call( context, paramValues );
    }
}
View Full Code Here

Examples of org.jboss.blacktie.jatmibroker.jab.JABServiceInvoker.call()

    }

    JABServiceInvoker remoteService = new JABServiceInvoker(serviceName,
        session, bufferType, bufferSubType);
    serialize(toSend, remoteService.getRequest());
    remoteService.call(tx);
    JABResponse responseMessage = new JABResponse(remoteService.getRCode());
    deserialize(responseMessage, remoteService.getResponse());

    return responseMessage;
  }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree995.ImplementsSessionSynchronizationRemoteBusiness.call()

      // Check callbacks are reset
      this.assertCallbacksReset();

      // Invoke
      sfsb.call();

      // Check callbacks have been made exactly once
      this.assertCallsExpected(1);
     
      // Invoke again
View Full Code Here

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.JABServiceInvoker.call()

    }

    JABServiceInvoker remoteService = new JABServiceInvoker(serviceName,
        session, bufferType, bufferSubType);
    serialize(toSend, remoteService.getRequest());
    remoteService.call(tx);
    JABResponse responseMessage = new JABResponse(remoteService.getRCode());
    deserialize(responseMessage, remoteService.getResponse());

    return responseMessage;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.