Jade 中的两个容器以及不同设备之间的通信

two containers in Jade and communication between different devices

我目前正在学习玉。我发现关于 Jade 的信息很少。我可以问两个问题吗?

  1. 如何在 Eclipse 或 Netbeans 中构建第二个容器?
  2. 如何实现两台不同设备之间的通信,比如一台电脑和一台raspberry pi?
  1. 关于容器创建(假设你已经在某处有一个主容器):

    Runtime rt = Runtime.instance();
    String containerName;
    ProfileImpl pContainer;
    ContainerController containerRef;
    
    //create the container
    containerName="Mycontainer1";
    pContainer = new ProfileImpl(PLATFORM_IP, PLATFORM_PORT, PLATFORM_ID);
    pContainer.setParameter(Profile.CONTAINER_NAME,containerName);
    
    //link it to the platform
    System.out.println("Launching container "+pContainer);
    containerRef = rt.createAgentContainer(pContainer);
    

    完整的示例:https://startjade.gitlab.io/CreatePlatform/

  2. 如果设备可以自由通信,并且你希望它们成为同一个 jade 实例的一部分,只需在 pi 上部署一个容器(例如),并使其连接到你的 mainContainer电脑。平台上的代理将能够相互通信,无论他们身在何处。