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

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

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

import jakarta.inject.Inject;
import jakarta.inject.Singleton;

import io.smallrye.faulttolerance.core.apiimpl.BasicCircuitBreakerMaintenanceImpl;

@Singleton
public class CircuitBreakerMaintenanceImpl extends BasicCircuitBreakerMaintenanceImpl {
    @Inject
    public CircuitBreakerMaintenanceImpl(ExistingCircuitBreakerNames existingCircuitBreakerNames) {
        super(existingCircuitBreakerNames::contains);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy