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

io.smallrye.faulttolerance.RequestContextIntegration Maven / Gradle / Ivy

There is a newer version: 6.4.0
Show newest version
package io.smallrye.faulttolerance;

import jakarta.enterprise.context.control.RequestContextController;
import jakarta.inject.Singleton;

import io.smallrye.faulttolerance.internal.RequestContextControllerProvider;

@Singleton
public class RequestContextIntegration {
    private final RequestContextControllerProvider provider = RequestContextControllerProvider.load();

    public RequestContextController get() {
        return provider.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy