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

io.smallrye.stork.spi.internal.ServiceDiscoveryLoader 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.internal;

import io.smallrye.stork.api.ServiceDiscovery;
import io.smallrye.stork.api.config.ConfigWithType;
import io.smallrye.stork.api.config.ServiceConfig;
import io.smallrye.stork.spi.ElementWithType;
import io.smallrye.stork.spi.StorkInfrastructure;

/**
 * Used by stork internals to generate service loader for ServiceDiscoveryProvider.
 */
public interface ServiceDiscoveryLoader extends ElementWithType {

    /**
     * Creates a new {@link ServiceDiscovery} instance.
     *
     * @param config the service discovery configuration, must not be {@code null}
     * @param serviceName the service name, must not be {@code null} or blank
     * @param serviceConfig the service configuration, must not be {@code null}
     * @param storkInfrastructure the stork infrastructure, must not be {@code null}
     * @return the new {@link ServiceDiscovery}
     */
    ServiceDiscovery createServiceDiscovery(ConfigWithType config, String serviceName,
            ServiceConfig serviceConfig, StorkInfrastructure storkInfrastructure);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy