This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Reconcile RetrySettings & Clock #235
Merged
Merged
Changes from 13 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
fc30507
Reconcile RetrySettings & Clock
vam-google b31ce2b
Removed System.out.println
vam-google 922bdf5
Removed unused code, increased test coverage.
vam-google 9756895
Fixed some documentation grammatical mistakes.
vam-google e8d0c40
Addressed review comments, PTAL.
vam-google eeb49b2
reverted versions back to 0.3.1-SNAPSHOT
vam-google 8da0218
renamed rv variable
vam-google 583c1c4
Merge remote-tracking branch 'upstream/master'
vam-google ff0ff36
1. Split RetryHandler on 3 different components: 1) scheduling logic,…
vam-google b380e16
googleJavaFormat files
vam-google 9d79b03
Adressed PR comments, PTAL.
vam-google 04f7f09
changed retry algorithms to return null in case if they do not provid…
vam-google d3eabec
fixed the test (failed because change of the contract for ExceptionRe…
vam-google 87caffd
updated documentation for ScheduledExcecutorService
vam-google faad8e3
Merge remote-tracking branch 'upstream/master'
vam-google 7500a2d
udated javadoc for ApiClock
vam-google db34591
Updated docs and formatting
vam-google File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
65 changes: 65 additions & 0 deletions
65
src/main/java/com/google/api/gax/core/CurrentMillisClock.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,65 @@ | ||
/* | ||
* Copyright 2017, Google Inc. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
* met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following disclaimer | ||
* in the documentation and/or other materials provided with the | ||
* distribution. | ||
* * Neither the name of Google Inc. nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package com.google.api.gax.core; | ||
|
||
import java.io.ObjectStreamException; | ||
import java.io.Serializable; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
/** | ||
* Implementation of the {@link ApiClock} interface, which uses {@link System#currentTimeMillis()} | ||
* as time source. | ||
*/ | ||
public final class CurrentMillisClock implements ApiClock, Serializable { | ||
|
||
private static final long serialVersionUID = -6019259882852183285L; | ||
private static final ApiClock DEFAULT_CLOCK = new CurrentMillisClock(); | ||
|
||
public static ApiClock getDefaultClock() { | ||
return DEFAULT_CLOCK; | ||
} | ||
|
||
private CurrentMillisClock() {} | ||
|
||
@Override | ||
public long nanoTime() { | ||
return TimeUnit.NANOSECONDS.convert(millisTime(), TimeUnit.MILLISECONDS); | ||
} | ||
|
||
@Override | ||
public long millisTime() { | ||
return System.currentTimeMillis(); | ||
} | ||
|
||
private Object readResolve() throws ObjectStreamException { | ||
return DEFAULT_CLOCK; | ||
} | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.