com.oracle.coherence.grpc.client.common.GrpcChannelConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coherence-grpc-client-common Show documentation
Show all versions of coherence-grpc-client-common Show documentation
Oracle Coherence Community Edition
The newest version!
/*
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
package com.oracle.coherence.grpc.client.common;
import io.grpc.ManagedChannelBuilder;
/**
* A class that can apply additional configuration to a
* {@link ManagedChannelBuilder} before it is used to
* build a {@link io.grpc.ManagedChannel}.
*
* @author Jonathan Knight 2022.08.25
* @since 22.06.2
*/
public interface GrpcChannelConfigurer
{
void apply(ManagedChannelBuilder> builder);
}