Este contenido no está disponible en el idioma seleccionado.

Chapter 116. NATS


NATS Component

NATS is a fast and reliable messaging platform.
Maven users will need to add the following dependency to their pom.xml for this component.
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-nats</artifactId>
    <!-- use the same version as your Camel core version -->
    <version>x.y.z</version>
</dependency>
Copy to Clipboard Toggle word wrap

URI format

nats:servers[?options]
Copy to Clipboard Toggle word wrap
Where servers represents the list of NATS servers.

Options

Expand
Name
Default Value
Description
servers
null
Defines the servers the component should connect to.
topic null The topic to subscribe/publish to.
reconnect true Whether or not to use the reconnection feature.
pedantic false Whether or not running in pedantic mode (this affects performance).
verbose false Whether or not running in verbose mode
ssl false Whether or not to use SSL
reconnectTimeWait 2000 Waiting time before attempts reconnection (in milliseconds)
maxReconnectAttempts 3 Set the maximum number of reconnection attempts in case the connection is lost.
pingInterval 4000 Ping interval to be aware if connection is still alive (in milliseconds)
noRandomizeServers false Whether or not to randomize the order of servers for the connection attempts
queueName null The Queue name if we are using NATS for a queue configuration (consumer).
maxMessages null Stop receiving messages from a topic we are subscribing to after maxMessages (consumer).
poolSize 10 Pool size for consumer workers (consumer).

Headers

Expand
NameTypeDescription
CamelNatsMessageTimestamp
long The timestamp of a consumed message.
CamelNatsSubscriptionId
Integer
The subscription ID of a consumer.
Producer example:
from("direct:send").to("nats://localhost:4222?topic=test");
Copy to Clipboard Toggle word wrap
Consumer example:
from("nats://localhost:4222?topic=test&maxMessages=5&queueName=test").to("mock:result");
Copy to Clipboard Toggle word wrap
Volver arriba
Red Hat logoGithubredditYoutubeTwitter

Aprender

Pruebe, compre y venda

Comunidades

Acerca de la documentación de Red Hat

Ayudamos a los usuarios de Red Hat a innovar y alcanzar sus objetivos con nuestros productos y servicios con contenido en el que pueden confiar. Explore nuestras recientes actualizaciones.

Hacer que el código abierto sea más inclusivo

Red Hat se compromete a reemplazar el lenguaje problemático en nuestro código, documentación y propiedades web. Para más detalles, consulte el Blog de Red Hat.

Acerca de Red Hat

Ofrecemos soluciones reforzadas que facilitan a las empresas trabajar en plataformas y entornos, desde el centro de datos central hasta el perímetro de la red.

Theme

© 2025 Red Hat