-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68c4a0e
commit 84752e2
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
...c/main/java/org/eclipse/ecf/provider/etcd3/container/ManagedChannelBuilderConfigurer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Composent, Inc. All rights reserved. This | ||
* program and the accompanying materials are made available under the terms of | ||
* the Eclipse Public License v1.0 which accompanies this distribution, and is | ||
* available at http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: Scott Lewis - initial API and implementation | ||
******************************************************************************/ | ||
package org.eclipse.ecf.provider.etcd3.container; | ||
|
||
import io.grpc.ManagedChannelBuilder; | ||
|
||
public interface ManagedChannelBuilderConfigurer { | ||
|
||
ManagedChannelBuilder<?> createAndConfigureManagedChannelBuilder(Etcd3DiscoveryContainerConfig config); | ||
|
||
} |