gpt4 book ai didi

java - Jade 消息队列 - Eclipse

转载 作者:行者123 更新时间:2023-11-30 06:05:40 25 4
gpt4 key购买 nike

我想如何从 Eclipse 更改这些参数(不使用命令行):

jade_core_messaging_MessageManager_poolsize
jade_core_messaging_MessageManager_maxqueuesize
jade_core_messaging_MessageManager_deliverytimethreshold

第一个更改处理队列大小的线程数,第二个更改接收的 ACL 消息的最大队列大小,最后一个更改何时超出传递时间阈值时打印警告。

最好的,

最佳答案

如果您以编程方式启动容器和代理,那么就像这样

    jade.core.Runtime rt = jade.core.Runtime.instance();

Properties properties = new Properties();
properties.put("local-port", "8858");
properties.put("port", "8858");
properties.put("host", "127.0.0.1");
properties.put("local-host", "127.0.0.1");
.... other parameters
properties.put("jade_core_messaging_MessageManager_poolsize", "100");

ProfileImpl p = new ProfileImpl(properties);
rt.setCloseVM(true);
AgentContainer agentContainer = rt.createMainContainer(p);

AgentController ac = agentContainer.createNewAgent("YourAgent", YourAgent.class.getName(), new Object[]{});
ac.start();

关于java - Jade 消息队列 - Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51400315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com