stan.java icon indicating copy to clipboard operation
stan.java copied to clipboard

NATS Streaming Java Client

Results 21 stan.java issues
Sort by recently updated
recently updated
newest added

`redeliveryCount` was added to `MsgProto` (in `protocol.proto`) and made available in the Go client as part of [nats-streaming-server #996](https://github.com/nats-io/nats-streaming-server/issues/996) . This is critical for implementation of setting a limit number...

Fix for https://github.com/nats-io/stan.java/issues/155 As this is supported by server, just need to add field for `redeliveryCount`. Tested locally within my project.

This project currently uses a fairly-old version of `protobuf-java` (`3.9.1`). That version was released on August 6, 2019. The current version is `3.17.3`. Please update the version of `protobuf-java` to...

Currently, I don't see any example of creating secure stan java client. Example of secure nats client is there where we can use SSLContext in Options but how to do...

Hi, We have a situtation when the app restart and for some reason didn't closed a subscription but did close the client connection. After the app starts again, the subscription...

We have currently problems with one of our services connected to our cloud NATS-Cluster via Leafnode. We are using NATS-Streaming with Springboot MicroServices. The service runs very well for a...

Hi, I am trying to mock the streaming connection in my tests that are publishing or subscribing to Nats. Is there any documentation, test-kit or examples on how to do...

On a fresh install when things are working fine we can see 7 clients and 12 channels(subscriptions) ![Screen Shot 2020-10-29 at 4 49 27 PM](https://user-images.githubusercontent.com/2520028/97631060-cf997a00-1a06-11eb-8212-30e81fbb610e.png) ![Screen Shot 2020-10-29 at 4...

Thanks for the awesome library! I was wondering if support for reactive subscriptions can be added. For example, instead of doing ```java Subscription sub = sc.subscribe("foo", new MessageHandler() { public...