Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
227 additions
and 44 deletions.
- +6 −3 gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java
- +1 −0 gax-grpc/src/test/java/com/google/api/gax/grpc/testing/LocalChannelProvider.java
- +6 −3 gax-httpjson/src/main/java/com/google/api/gax/httpjson/InstantiatingHttpJsonChannelProvider.java
- +8 −3 gax-httpjson/src/main/java/com/google/api/gax/httpjson/ManagedHttpJsonChannel.java
- +19 −9 gax/src/main/java/com/google/api/gax/rpc/ClientContext.java
- +46 −1 gax/src/main/java/com/google/api/gax/rpc/ClientSettings.java
- +56 −12 gax/src/main/java/com/google/api/gax/rpc/StubSettings.java
- +9 −9 gax/src/main/java/com/google/api/gax/rpc/TransportChannelProvider.java
- +53 −3 gax/src/test/java/com/google/api/gax/rpc/ClientContextTest.java
- +13 −1 gax/src/test/java/com/google/api/gax/rpc/ClientSettingsTest.java
- +10 −0 gax/src/test/java/com/google/api/gax/rpc/testing/FakeTransportChannel.java
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
@@ -74,6 +74,7 @@ public boolean shouldAutoClose() { | ||
return true; | ||
} | ||
|
||
@Deprecated | ||
@Override | ||
public boolean needsExecutor() { | ||
return false; | ||
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
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.