Deprecation Notice: This library is deprecated and will no longer be maintained or updated. For NATS enabled applications requiring persistence, it is recommended to use the
JetStreamClient
provided by theballerinax/nats
library. For more information, see the new NATS JetStream Client and the NATS JetStream Listener.
This library provides the capability to send and receive messages by connecting to the NATS streaming server.
NATS Streaming is a data streaming system powered by NATS. It embeds, extends, and interoperates seamlessly with the core NATS platform. In addition to the features of the core NATS platform, NATS Streaming provides advanced functionality such as persistence, message replay, durable subscriptions, etc.
First, you need to set up the connection with the NATS Streaming server. The following ways can be used to connect to a
NATS Streaming server by initializing the stan:Client
or stan:Listener
.
- Connect to a server using the default URL:
stan:Client stanClient = check new(stan:DEFAULT_URL);
- Connect to a server using a specific URL:
stan:Client stanClient = check new("nats://localhost:4222");
- Connect to a server with the custom configurations:
stan:StreamingConfiguration config = {
clusterId: "test-cluster",
ackTimeout: 30,
connectionTimeout: 5;
};
stan:Client stanClient = check new("nats://localhost:4222", config);
Once connected, use the publishMessage
function to publish messages to a given subject as shown below.
string message = "hello world";
check producer->publishMessage({ content: message, subject: "demo" });
// Binds the consumer to listen to the messages published to the 'demo' subject.
@stan:ServiceConfig {
subject: "demo"
}
service stan:Service on subscription {
remote function onMessage(stan:Message message) {
}
}
The Ballerina NATS streaming library allows the use of TLS in communication. This setting expects a secure socket to be set in the connection configuration as shown below.
stan:SecureSocket secured = {
cert: {
path: "<path>/truststore.p12",
password: "password"
},
key: {
path: "<path>/keystore.p12",
password: "password"
}
};
stan:Listener stanListener = check new("nats://serverone:4222", secureSocket = secured);
stan:SecureSocket secured = {
cert: {
path: "<path>/truststore.p12",
password: "password"
},
key: {
path: "<path>/keystore.p12",
password: "password"
}
};
stan:Client stanClient = check new("nats://serverone:4222", secureSocket = secured);
NATS Streaming offers At-Least-Once delivery semantics meaning that once a message has been delivered to an eligible subscriber if an acknowledgment is not received within the configured timeout interval, NATS Streaming will attempt redelivery of the message.
If you need to acknowledge the incoming messages manually, make sure to set the autoAck
status of the service config to false as shown below.
// Set `autoAck` to false.
@stan:ServiceConfig {
subject: "demo",
autoAck: false
}
service stan:Service on subscription {
remote function onMessage(stan:Message message, stan:Caller caller) {
// Manually acknowledge the message received.
stan:Error? ackResult = caller->ack();
}
}
Durable subscriptions allow clients to assign a durable name to a subscription when it is created. Doing this causes the NATS Streaming server to track the last-acknowledged message for that clientID
+ durable name
so that only messages since the last acknowledged message will be delivered to the client. These subscriptions will survive a server restart.
// Set the client ID for the listener.
listener stan:Listener lis = new(stan:DEFAULT_URL, clientId = "c0");
// Set the durable name.
@stan:ServiceConfig {
subject: "demo",
durableName: "sample-name"
}
service stan:Service on lis {
remote function onMessage(stan:Message message) {
}
}
Issues and Projects tabs are disabled for this repository as this is part of the Ballerina Standard Library. To report bugs, request new features, start new discussions, view project boards, etc. please visit Ballerina Standard Library parent repository.
This repository only contains the source code for the library.
-
Download and install Java SE Development Kit (JDK) version 11 (from one of the following locations).
-
Download and install Docker as follows. (The stan library is tested with a docker-based integration test environment. The before suite initializes the docker container before executing the tests).
-
Installing Docker on Linux
Note: These commands retrieve content from the
get.docker.com
website in a quiet output-document mode and installs it.wget -qO- https://get.docker.com/ | sh
-
For instructions on installing Docker on Mac, go to Get Started with Docker for Mac.
-
For information on installing Docker on Windows, goo to Get Started with Docker for Windows.
-
Execute the commands below to build from source.
-
To build the library:
./gradlew clean build
-
To run the tests:
./gradlew clean test
-
To build the library without the tests:
./gradlew clean build -x test
-
To debug package implementation:
./gradlew clean build -Pdebug=<port>
-
To debug the library with Ballerina language:
./gradlew clean build -PbalJavaDebug=<port>
-
Publish ZIP artifact to the local
.m2
repository:./gradlew clean build publishToMavenLocal
-
Publish the generated artifacts to the local Ballerina central repository:
./gradlew clean build -PpublishToLocalCentral=true
-
Publish the generated artifacts to the Ballerina central repository:
./gradlew clean build -PpublishToCentral=true
As an open source project, Ballerina welcomes contributions from the community.
For more information, go to the contribution guidelines.
All contributors are encouraged to read the Ballerina Code of Conduct.
- For more information go to the
stan
library. - For example demonstrations of the usage, go to Ballerina By Examples.
- Chat live with us via our Discord server.
- Post all technical questions on Stack Overflow with the #ballerina tag.