File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
plugins/repository-s3/src/main/java/org/opensearch/repositories/s3 Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1111import software .amazon .awssdk .http .async .SdkAsyncHttpClient ;
1212
1313/**
14- * Interface for the AsyncHttpClient to be used by S3 for file uploads.
14+ * An interface for providing the specific implementation of HTTP client used for s3 client.
15+ * <p>
16+ * Implementations are responsible implement the asyncHttpClient method and provide the appropriate Http client
17+ * to be used by s3 clients.
18+ * <p>
19+ * Current supported Http clients are "AwsCrtAsyncHttpClient" and "NettyNioAsyncHttpClient"
1520 */
1621public interface AsyncHttpClient {
1722
1823 /**
19- * method to build the appropriate HttpClient implementations
24+ * Method to build the appropriate HttpClient implementations
2025 * @return SdkAsyncHttpClient
2126 */
2227 SdkAsyncHttpClient asyncHttpClient ();
You can’t perform that action at this time.
0 commit comments