Java Dynamic Sqs Listener Versions Save

Java SQS Listener library built to be customisable and dynamic during runtime

v3.0.0-M2

4 years ago

Enhancements

Tech Debt

v3.0.0-M1

4 years ago

Enhancements

v2.3.0

4 years ago

Enhancements

Bug fixes

Local Development Improvements

Tech Debt

v2.2.0

5 years ago

Enhancments

public class MyListener {
   @QueueListener("queueName")
   public void myMethod(Message message) {
        // do something with the raw message
   }
}
public class MyListener {
   @QueueListener("queueName")
   public void myMethod(@MessageAttribute("key") String attribute) {
        // do something
   }

   @QueueListener("otherQueueName")
   public void myMethod(@MessageSystemAttribute(SENT_TIMESTAMP) String systemAttribute) {
        // do something
   }
}
@QueueListener(value = "something", concurrencyLevelString="$something.concurrencyLevel}")

and the application.yml has

something:
    concurrencyLevel: 2

Bug Fixes

Security Fixes

v2.1.0

5 years ago

Enhancments

java-dynamic-sqs-listener-2.0.0

5 years ago

Start of Release Documentation Tracking