-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Refactor RefreshAheadConnectionInfoCache. (#1997)
This makes a number of refactoring changes to align the Java connector with other implementations. - Introduce a ConnectionInfoCache interface - Rename DefaultConnectionInfoCache to RefreshAheadConnectionInfoCache - Update and simplify instantiation logic of RefreshAheadConnectionInfoCache Part of #992
- Loading branch information
Showing
10 changed files
with
229 additions
and
202 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
36 changes: 36 additions & 0 deletions
36
core/src/main/java/com/google/cloud/sql/core/ConnectionInfoCache.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,36 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 com.google.cloud.sql.core; | ||
|
||
/** ConnectionInfoCache is the contract for a caching strategy for ConnectionInfo. */ | ||
interface ConnectionInfoCache { | ||
|
||
/** | ||
* Returns metadata needed to create a connection to the instance. | ||
* | ||
* @return returns ConnectionMetadata containing the preferred IP and SSL connection data. | ||
* @throws IllegalArgumentException If the instance has no IP addresses matching the provided | ||
* preferences. | ||
*/ | ||
ConnectionMetadata getConnectionMetadata(long timeoutMs); | ||
|
||
void forceRefresh(); | ||
|
||
void refreshIfExpired(); | ||
|
||
void close(); | ||
} |
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
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
154 changes: 0 additions & 154 deletions
154
core/src/main/java/com/google/cloud/sql/core/DefaultConnectionInfoCache.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.