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

io.smallrye.stork.spi.ServiceDiscoveryProvider Maven / Gradle / Ivy

Go to download

Main Stork API classes. You are likely to need `smallrye-stork-core` and not this module.

The newest version!
package io.smallrye.stork.spi;

import io.smallrye.stork.api.ServiceDiscovery;
import io.smallrye.stork.api.config.ServiceConfig;

/**
 * A service discovery provider allowing to create instances of service discovery.
 * 

* Implementation should use the {@link io.smallrye.stork.api.config.ServiceDiscoveryAttribute} to define attributes. * * @param the configuration type (class generated from the {@link io.smallrye.stork.api.config.ServiceDiscoveryAttribute} * annotations). */ public interface ServiceDiscoveryProvider { /** * Creates a new instance of {@link ServiceDiscovery}. * * @param config the configuration, must not be {@code null} * @param serviceName the service name, must not be {@code null}, or blank. * @param serviceConfig the service config, must not be {@code null} * @param storkInfrastructure the stork infrastructure, must not be {@code null} * @return the service discovery instance */ ServiceDiscovery createServiceDiscovery(T config, String serviceName, ServiceConfig serviceConfig, StorkInfrastructure storkInfrastructure); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy