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

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

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

import io.smallrye.common.annotation.Blocking;
import io.smallrye.faulttolerance.autoconfig.AutoConfig;
import io.smallrye.faulttolerance.autoconfig.Config;

@AutoConfig
public interface BlockingConfig extends Blocking, Config {
    @Override
    default void validate() {
        // we don't validate the method return type, because the @Blocking annotation
        // may be present for another framework and we're supposed to ignore it
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy