All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mvnsearch.spring.boot.nats.annotation.NatsSubscriber Maven / Gradle / Ivy

Go to download

Spring Boot starter NATS with publish/subscribe, KeyValue, Object Store, Durable Component, Services framework etc. support.

There is a newer version: 0.2.1
Show newest version
package org.mvnsearch.spring.boot.nats.annotation;


import java.lang.annotation.*;

/**
 * NATS subscriber
 *
 * @author linux_china
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Repeatable(NatsSubscribers.class)
public @interface NatsSubscriber {

  String subject();

  String queueGroup() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy