239.4. Headers
Name | 类型 | 描述 |
---|---|---|
CamelNatsMessageTimestamp | long | 所消耗的消息的时间戳。 |
生成者示例:
from("direct:send").to("nats://localhost:4222?topic=test");
如果使用授权,您可以在服务器 URL 中直接指定凭证
from("direct:send").to("nats://username:password@localhost:4222?topic=test");
或您的令牌
from("direct:send").to("nats://token@localhost:4222?topic=test");
消费者示例:
from("nats://localhost:4222?topic=test&maxMessages=5&queueName=test").to("mock:result");