Package org.springframework.erlang.core

Examples of org.springframework.erlang.core.Node


    }

    private void extractNodes(List<Node> nodes, OtpErlangList nodesList) {
      for (OtpErlangObject erlangNodeName : nodesList) {
        String nodeName = erlangNodeName.toString();
        nodes.add(new Node(nodeName));
      }
    }
View Full Code Here

TOP

Related Classes of org.springframework.erlang.core.Node

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.