23
23
/**
24
24
* The transport layer is responsible of the serialization/deserialization and the retry strategy.
25
25
*/
26
- class HttpTransport {
26
+ public class HttpTransport {
27
27
28
28
private final HttpRequester httpRequester ;
29
29
private final RetryStrategy retryStrategy ;
@@ -53,7 +53,7 @@ void close() throws IOException {
53
53
* @throws AlgoliaApiException When the API sends an error
54
54
* @throws AlgoliaRuntimeException When an error occurred during the serialization.
55
55
*/
56
- <TResult > CompletableFuture <TResult > executeRequestAsync (
56
+ public <TResult > CompletableFuture <TResult > executeRequestAsync (
57
57
@ Nonnull HttpMethod method ,
58
58
@ Nonnull String path ,
59
59
@ Nonnull CallType callType ,
@@ -78,7 +78,7 @@ <TResult> CompletableFuture<TResult> executeRequestAsync(
78
78
* @throws AlgoliaApiException When the API sends an error
79
79
* @throws AlgoliaRuntimeException When an error occurred during the serialization.
80
80
*/
81
- <TResult , TData > CompletableFuture <TResult > executeRequestAsync (
81
+ public <TResult , TData > CompletableFuture <TResult > executeRequestAsync (
82
82
@ Nonnull HttpMethod method ,
83
83
@ Nonnull String path ,
84
84
@ Nonnull CallType callType ,
@@ -105,7 +105,7 @@ <TResult, TData> CompletableFuture<TResult> executeRequestAsync(
105
105
* @throws AlgoliaApiException When the API sends an error
106
106
* @throws AlgoliaRuntimeException When an error occurred during the serialization.
107
107
*/
108
- <TResult , TInnerResult , TData > CompletableFuture <TResult > executeRequestAsync (
108
+ public <TResult , TInnerResult , TData > CompletableFuture <TResult > executeRequestAsync (
109
109
@ Nonnull HttpMethod method ,
110
110
@ Nonnull String path ,
111
111
@ Nonnull CallType callType ,
0 commit comments