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

io.kroxylicious.proxy.internal.net.VirtualClusterBindingResolver Maven / Gradle / Ivy

/*
 * Copyright Kroxylicious Authors.
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */

package io.kroxylicious.proxy.internal.net;

import java.util.concurrent.CompletionStage;

/**
 * Used by the {@link io.kroxylicious.proxy.internal.KafkaProxyInitializer} to resolve incoming channel
 * metadata into a {@link VirtualClusterBinding}.
 */
public interface VirtualClusterBindingResolver {

    /**
     * Uses channel metadata from the incoming connection to resolve a {@link VirtualClusterBinding}.
     *
     * @param endpoint endpoint being resolved
     * @param sniHostname SNI hostname, may be null.
     * @return completion stage that when complete will yield a {@link VirtualClusterBinding}.
     */
    CompletionStage resolve(Endpoint endpoint, String sniHostname);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy