quarkus-reactive-jms-tx-deployment

Quarkus reactive JMS transaction stream extension

License

License

Categories

Categories

Quarkus Container Microservices React User Interface Web Frameworks
GroupId

GroupId

org.lorislab.quarkus
ArtifactId

ArtifactId

quarkus-reactive-jms-tx-deployment
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

quarkus-reactive-jms-tx-deployment
Quarkus reactive JMS transaction stream extension
Project Organization

Project Organization

p6

Download quarkus-reactive-jms-tx-deployment

How to add to project

<!-- https://jarcasting.com/artifacts/org.lorislab.quarkus/quarkus-reactive-jms-tx-deployment/ -->
<dependency>
    <groupId>org.lorislab.quarkus</groupId>
    <artifactId>quarkus-reactive-jms-tx-deployment</artifactId>
    <version>0.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.lorislab.quarkus/quarkus-reactive-jms-tx-deployment/
implementation 'org.lorislab.quarkus:quarkus-reactive-jms-tx-deployment:0.1.1'
// https://jarcasting.com/artifacts/org.lorislab.quarkus/quarkus-reactive-jms-tx-deployment/
implementation ("org.lorislab.quarkus:quarkus-reactive-jms-tx-deployment:0.1.1")
'org.lorislab.quarkus:quarkus-reactive-jms-tx-deployment:jar:0.1.1'
<dependency org="org.lorislab.quarkus" name="quarkus-reactive-jms-tx-deployment" rev="0.1.1">
  <artifact name="quarkus-reactive-jms-tx-deployment" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.lorislab.quarkus', module='quarkus-reactive-jms-tx-deployment', version='0.1.1')
)
libraryDependencies += "org.lorislab.quarkus" % "quarkus-reactive-jms-tx-deployment" % "0.1.1"
[org.lorislab.quarkus/quarkus-reactive-jms-tx-deployment "0.1.1"]

Dependencies

compile (1)

Group / Artifact Type Version
io.quarkus : quarkus-core-deployment jar

Project Modules

There are no modules declared in this project.

quarkus-reactive-jms-tx

Quarkus reactive JMS Session SESSION_TRANSACTED receiver.

License GitHub Workflow Status (branch) GitHub tag (latest SemVer) Maven Central

Example

@Incoming("input")
@Acknowledgment(Acknowledgment.Strategy.MANUAL)
public CompletionStage<Void> message(IncomingJmsTxMessage<Data> input) {
    try {    
      ...
      // optional send message
      input.send(Message.of("Output"));
        
      // session commit
      return input.ack();
    } catch (Exception ex) {
        // session rollback
        return input.rollback();
    }
}

Create a release

mvn semver-release:release-create

Create a patch branch

mvn semver-release:patch-create -DpatchVersion=x.x.0
org.lorislab.quarkus

lorislab

Versions

Version
0.1.1