-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Server urls connection management (#648)
- Loading branch information
Showing
4 changed files
with
406 additions
and
65 deletions.
There are no files selected for viewing
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
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,34 @@ | ||
// Copyright 2020 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Allows the developer to provide the list of servers to try for connecting/reconnecting | ||
* | ||
* IMPORTANT! ServerListProvider IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE. | ||
*/ | ||
public interface ServerListProvider { | ||
/** | ||
* Get the ordered server list to try for connecting/reconnecting | ||
* @param currentServer the server that connection is currently connected to. May be null. | ||
* @param optionsServersUnprocessed the list of server urls exactly how they were given to the options | ||
* @param discoveredServersUnprocessed the entire list of servers exactly as returned in the server info | ||
* @return the ordered server list | ||
*/ | ||
List<String> getServerList(String currentServer, | ||
List<String> optionsServersUnprocessed, | ||
List<String> discoveredServersUnprocessed); | ||
} |
Oops, something went wrong.