Hazelcast队列配置动态队列

时间:2016-06-01 16:18:44

标签: java hazelcast

我有一个创建动态队列的系统。这些队列在消息类型上都很相似。

我需要在队列中持久化,所以我实现了QueueStore。问题是,要设置持久性,我需要知道队列的名称,名称是动态的。有没有办法让所有队列具有相同的配置?更好的是必须根据队列名称的某种模式进行不同的配置。

这是我到目前为止所做的。

final QueueStoreConfig queueStoreConfig = new QueueStoreConfig()
    .setFactoryImplementation(
        (name, properties) -> new GenericQueueStore(name, properties)
    );

final QueueConfig myQueueConfig = new QueueConfig()
    .setName("myQueue")
    .setQueueStoreConfig(queueStoreConfig);

final QueueConfig myQueueConfig2 = new QueueConfig()
    .setName("myQueue2")
    .setQueueStoreConfig(queueStoreConfig);


return new Config()
    .addQueueConfig(myQueueConfig)
    .addQueueConfig(myQueueConfig2);

1 个答案:

答案 0 :(得分:1)

要使用相同的配置配置多个数据结构,您可以使用文档中所述的config wildcards和命名模式:http://docs.hazelcast.org/docs/3.6/manual/html-single/index.html#using-wildcards