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

io.smallrye.faulttolerance.config.BulkheadConfig Maven / Gradle / Ivy

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

import org.eclipse.microprofile.faulttolerance.Bulkhead;
import org.eclipse.microprofile.faulttolerance.exceptions.FaultToleranceDefinitionException;

import io.smallrye.faulttolerance.autoconfig.AutoConfig;
import io.smallrye.faulttolerance.autoconfig.Config;

@AutoConfig
public interface BulkheadConfig extends Bulkhead, Config {
    @Override
    default void validate() {
        final String INVALID_BULKHEAD_ON = "Invalid @Bulkhead on ";

        if (value() < 0) {
            throw new FaultToleranceDefinitionException(INVALID_BULKHEAD_ON + method()
                    + ": value shouldn't be lower than 0");
        }
        if (waitingTaskQueue() < 1) {
            throw new FaultToleranceDefinitionException(INVALID_BULKHEAD_ON + method()
                    + ": waitingTaskQueue shouldn't be lower than 1");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy