Package org.erlide.runtime.rpc

Examples of org.erlide.runtime.rpc.RpcNoTargetException


    private synchronized RpcFuture sendRpcCall(final OtpNode node, final String peer,
            final boolean logCalls, final OtpErlangObject gleader, final String module,
            final String fun, final String signature, final Object... args0)
            throws SignatureException, RpcNoTargetException {
        if (!connected) {
            throw new RpcNoTargetException();
        }

        final OtpErlangObject[] args = convertArgs(signature, args0);

        OtpErlangObject res = null;
View Full Code Here


    private void rpcCast(final OtpNode node, final String peer, final boolean logCalls,
            final OtpErlangObject gleader, final String module, final String fun,
            final String signature, final Object... args0) throws SignatureException,
            RpcNoTargetException {
        if (!connected) {
            throw new RpcNoTargetException();
        }

        final OtpErlangObject[] args = convertArgs(signature, args0);

        OtpErlangObject msg = null;
View Full Code Here

TOP

Related Classes of org.erlide.runtime.rpc.RpcNoTargetException

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.