我可以将不同类型的消息写入编年史队列吗?

时间:2015-03-25 05:14:34

标签: chronicle chronicle-queue

我想将不同类型的消息写入编年史队列,并根据消息类型处理消费者中的消息。

我该怎么做?

2 个答案:

答案 0 :(得分:1)

Chronicle-Queue提供了可用于编写任何类型消息的低级构建块,因此您可以选择正确的数据结构。

例如,您可以使用带有一些元数据的小标题为您编写的数据添加前缀,然后将其用作数据处理的鉴别器。

答案 1 :(得分:0)

要实现这一点,我使用Wire

try (DocumentContext dc = appender.writingDocument())
{
    final Wire wire = dc.wire();
    final ValueOut v = wire.getValueOut();
    valueOut.typePrefix(m.getClass());
    valueOut.marshallable(m);
}

回读时我:

try (DocumentContext dc = tailer.readingDocument())
{
   final Wire wire = dc.wire();
   final ValueIn valueIn = wire.getValueIn();
   final Class clazz = valueIn.typePrefix();
   // msgPool is a prealloacted hashmap containing the messages I read
   final ReadMarshallable readObject = msgPool.get(clazz);  
   valueIn.readMarshallable(readObject)
   // readObject can now be used
}