io.quarkus.narayana.lra.runtime.NarayanaLRAProducers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-narayana-lra Show documentation
Show all versions of quarkus-narayana-lra Show documentation
Coordinate Long Running Actions (LRA)
package io.quarkus.narayana.lra.runtime;
import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.inject.Produces;
import io.narayana.lra.client.internal.proxy.nonjaxrs.LRAParticipantRegistry;
@Dependent
public class NarayanaLRAProducers {
@Produces
public LRAParticipantRegistry lraParticipantRegistry() {
return NarayanaLRARecorder.registry;
}
}