Searched +full:netty +full:- +full:nio +full:- +full:client (Results 1 – 25 of 191) sorted by relevance
12345678
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/ |
| D | NettyNioAsyncHttpClient.java | 16 package software.amazon.awssdk.http.nio.netty; 19 import static software.amazon.awssdk.http.nio.netty.internal.NettyConfiguration.EVENTLOOP_SHUTDOWN_… 20 import static software.amazon.awssdk.http.nio.netty.internal.NettyConfiguration.EVENTLOOP_SHUTDOWN_… 21 import static software.amazon.awssdk.http.nio.netty.internal.NettyConfiguration.EVENTLOOP_SHUTDOWN_… 22 import static software.amazon.awssdk.http.nio.netty.internal.utils.NettyUtils.runAndLogError; 25 import io.netty.channel.ChannelOption; 26 import io.netty.channel.EventLoopGroup; 27 import io.netty.handler.ssl.SslContext; 28 import io.netty.handler.ssl.SslProvider; 47 import software.amazon.awssdk.http.nio.netty.internal.AwaitCloseChannelPoolMap; [all …]
|
| D | SdkEventLoopGroup.java | 16 package software.amazon.awssdk.http.nio.netty; 18 import io.netty.channel.Channel; 19 import io.netty.channel.ChannelFactory; 20 import io.netty.channel.EventLoopGroup; 21 import io.netty.channel.nio.NioEventLoopGroup; 22 import io.netty.channel.socket.DatagramChannel; 23 import io.netty.channel.socket.nio.NioDatagramChannel; 24 import io.netty.channel.socket.nio.NioSocketChannel; 28 import software.amazon.awssdk.http.nio.netty.internal.utils.ChannelResolver; 55 …* the {@link EventLoopGroup} is managed by the SDK and will be shutdown when the HTTP client is cl… [all …]
|
| /external/aws-sdk-java-v2/test/http-client-tests/src/main/java/software/amazon/awssdk/http/ |
| D | SdkAsyncHttpClientH1TestSuite.java | 18 import static io.netty.handler.codec.http.HttpHeaderNames.CONNECTION; 19 import static io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH; 20 import static io.netty.handler.codec.http.HttpHeaderNames.CONTENT_TYPE; 21 import static io.netty.handler.codec.http.HttpHeaderValues.CLOSE; 22 import static io.netty.handler.codec.http.HttpHeaderValues.TEXT_PLAIN; 23 import static io.netty.handler.codec.http.HttpResponseStatus.INTERNAL_SERVER_ERROR; 24 import static io.netty.handler.codec.http.HttpResponseStatus.OK; 28 import io.netty.bootstrap.ServerBootstrap; 29 import io.netty.buffer.Unpooled; 30 import io.netty.channel.Channel; [all …]
|
| /external/aws-sdk-java-v2/archetypes/archetype-lambda/src/main/resources/archetype-resources/ |
| D | pom.xml | 2 <?xml version="1.0" encoding="UTF-8"?> 3 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/… 11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 16 <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> 20 #if( $httpClient == 'netty-nio-client') 21 <netty.openssl.version>${nettyOpenSslVersion}</netty.openssl.version> 44 <artifactId>netty-nio-client</artifactId> 48 <artifactId>apache-client</artifactId> 58 #if( $httpClient == 'netty-nio-client') 59 …<!-- Adding netty-tcnative dependency so that netty async client uses openSSL as sslProvider if su… [all …]
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/ |
| D | NettyNioAsyncHttpClientWireMockTest.java | 16 package software.amazon.awssdk.http.nio.netty; 18 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; 19 import static com.github.tomakehurst.wiremock.client.WireMock.any; 20 import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; 21 import static com.github.tomakehurst.wiremock.client.WireMock.post; 22 import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; 23 import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; 24 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; 25 import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; 26 import static com.github.tomakehurst.wiremock.client.WireMock.verify; [all …]
|
| D | NettyNioAsyncHttpClientNonBlockingDnsTest.java | 16 package software.amazon.awssdk.http.nio.netty; 18 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; 19 import static com.github.tomakehurst.wiremock.client.WireMock.any; 20 import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; 21 import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; 22 import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; 23 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; 24 import static com.github.tomakehurst.wiremock.client.WireMock.verify; 30 import static software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClientTestUtils.assertCanRecei… 31 import static software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClientTestUtils.createProvider; [all …]
|
| D | Http2MetricsTest.java | 16 package software.amazon.awssdk.http.nio.netty; 20 import io.netty.bootstrap.ServerBootstrap; 21 import io.netty.channel.ChannelHandlerContext; 22 import io.netty.channel.ChannelInboundHandlerAdapter; 23 import io.netty.channel.ChannelInitializer; 24 import io.netty.channel.ChannelOption; 25 import io.netty.channel.nio.NioEventLoopGroup; 26 import io.netty.channel.socket.ServerSocketChannel; 27 import io.netty.channel.socket.SocketChannel; 28 import io.netty.channel.socket.nio.NioServerSocketChannel; [all …]
|
| /external/aws-sdk-java-v2/archetypes/archetype-lambda/src/test/resources/projects/nettyclient/reference/ |
| D | pom.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/… 6 <artifactId>test-netty-artifact</artifactId> 7 <version>1.0-SNAPSHOT</version> 10 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 15 <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> 19 <netty.openssl.version>2.0.29.Final</netty.openssl.version> 41 <artifactId>netty-nio-client</artifactId> 45 <artifactId>apache-client</artifactId> 52 <artifactId>netty-nio-client</artifactId> [all …]
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/ |
| D | GoAwayTest.java | 16 package software.amazon.awssdk.http.nio.netty.fault; 21 import io.netty.bootstrap.ServerBootstrap; 22 import io.netty.buffer.ByteBuf; 23 import io.netty.channel.Channel; 24 import io.netty.channel.ChannelDuplexHandler; 25 import io.netty.channel.ChannelHandlerContext; 26 import io.netty.channel.ChannelInitializer; 27 import io.netty.channel.ChannelOption; 28 import io.netty.channel.nio.NioEventLoopGroup; 29 import io.netty.channel.socket.ServerSocketChannel; [all …]
|
| /external/aws-sdk-java-v2/.changes/2.15.x/ |
| D | 2.15.26.json | 3 "date": "2020-11-11", 13 "category": "Netty NIO HTTP Client", 15 …"description": "Upgrade Netty libraries to `4.1.53.Final`, and `netty-tcnative-boringssl-static` t… 31 "category": "Netty NIO HTTP Client", 33 …Netty HTTP client can leak memory when a response stream is cancelled prematurely but the upstream… 51 …"description": "QuickSight now supports Column-level security and connecting to Oracle data source…
|
| D | 2.15.62.json | 3 "date": "2021-01-11", 7 "category": "Netty NIO HTTP Client", 9 …suites based on the HTTP protocol. See [#2159](https://github.com/aws/aws-sdk-java-v2/issues/2159)" 25 "category": "Netty NIO HTTP Client",
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ |
| D | ChannelPipelineInitializer.java | 16 package software.amazon.awssdk.http.nio.netty.internal; 18 import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.CHANNEL_DIAGNOSTIC… 19 import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.HTTP2_CONNECTION; 20 import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.HTTP2_INITIAL_WIND… 21 import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.PROTOCOL_FUTURE; 22 import static software.amazon.awssdk.http.nio.netty.internal.NettyConfiguration.HTTP2_CONNECTION_PI… 23 import static software.amazon.awssdk.http.nio.netty.internal.utils.NettyUtils.newSslHandler; 27 import io.netty.buffer.UnpooledByteBufAllocator; 28 import io.netty.channel.Channel; 29 import io.netty.channel.ChannelInitializer; [all …]
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/utils/ |
| D | NettyUtils.java | 16 package software.amazon.awssdk.http.nio.netty.internal.utils; 18 import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.CHANNEL_DIAGNOSTIC… 20 import io.netty.buffer.ByteBufAllocator; 21 import io.netty.channel.Channel; 22 import io.netty.channel.EventLoop; 23 import io.netty.handler.ssl.SslContext; 24 import io.netty.handler.ssl.SslHandler; 25 import io.netty.handler.timeout.ReadTimeoutException; 26 import io.netty.handler.timeout.WriteTimeoutException; 27 import io.netty.util.AttributeKey; [all …]
|
| /external/aws-sdk-java-v2/http-client-spi/src/main/java/software/amazon/awssdk/http/ |
| D | HttpMetric.java | 31 * The name of the HTTP client. 37 * The maximum number of concurrent requests that is supported by the HTTP client. 39 …s, this is equal to the maximum number of TCP connections that can be be pooled by the HTTP client. 40 …2 operations, this is equal to the maximum number of streams that can be pooled by the HTTP client. 42 …* <p>Note: Depending on the HTTP client, this is either a value for all endpoints served by the HT… 43 …* that applies only to the specific endpoint/host used in the request. For 'apache-http-client', t… 44 …* for the entire HTTP client. For 'netty-nio-client', this value is per-endpoint. In all cases, th… 45 …* individual HTTP client instance, and does not include concurrency that may be available in other… 52 …* The number of additional concurrent requests that can be supported by the HTTP client without ne… 59 …* <p>Note: Depending on the HTTP client, this is either a value for all endpoints served by the HT… [all …]
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/ |
| D | ReadTimeoutTest.java | 16 package software.amazon.awssdk.http.nio.netty.internal.http2; 18 import io.netty.bootstrap.ServerBootstrap; 19 import io.netty.channel.ChannelHandler; 20 import io.netty.channel.ChannelHandlerContext; 21 import io.netty.channel.ChannelInboundHandlerAdapter; 22 import io.netty.channel.ChannelInitializer; 23 import io.netty.channel.ChannelOption; 24 import io.netty.channel.nio.NioEventLoopGroup; 25 import io.netty.channel.socket.ServerSocketChannel; 26 import io.netty.channel.socket.SocketChannel; [all …]
|
| /external/aws-sdk-java-v2/.changes/2.5.x/ |
| D | 2.5.10.json | 2 "date": "2019-03-14", 6 "category": "Netty NIO HTTP Client", 41 "category": "Netty NIO HTTP Client", 43 …"description": "Backport `FixedChannelPool` fix from https://github.com/netty/netty/pull/7927, whi… 48 …"description": "AWS Config - add ability to tag, untag and list tags for ConfigRule, Configuration…
|
| D | 2.5.23.json | 2 "date": "2019-04-03", 8 …th this release AWS Comprehend adds tagging support for document-classifiers and entity-recognizer… 16 "category": "Netty NIO HTTP Client", 18 … Netty NIO Async Client for TLS and caused the requests to fail of handshake_failure in some servi…
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/ |
| D | pom.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 15 --> 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 21 <artifactId>http-clients</artifactId> 27 <artifactId>netty-nio-client</artifactId> 28 <name>AWS Java SDK :: HTTP Clients :: Netty Non-Blocking I/O</name> 33 <!--SDK dependencies--> 41 <artifactId>http-client-spi</artifactId> [all …]
|
| /external/aws-sdk-java-v2/.changes/2.4.x/ |
| D | 2.4.0.json | 2 "date": "2019-02-04", 18 …ectionTimeToLive`, `connectionMaxIdleTime` and `useIdleConnectionReaper` to the netty HTTP client." 23 "description": "Enable `useIdleConnectionReaper` by default for Netty and Apache." 28 …"description": "Reduced netty client logging noise, by logging at a DEBUG level (instead of WARN) … 33 …oduces support for GPU workloads by enabling you to create clusters with GPU-enabled container ins… 36 "category": "Netty NIO HTTP Client", 38 … "description": "Allows customers to enable wire logging with the Netty client at debug level." 43 …-sdk-java-v2/issues/1041)) to close channels which have triggered an SslCloseCompletionEvent and a… 53 …"description": "Removed broken client methods: `BackupClient#getSupportedResourceTypes()` and `Pin… 58 "description": "Documentation updates for application-autoscaling"
|
| /external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/ |
| D | ConnectionReaperTest.java | 16 package software.amazon.awssdk.http.nio.netty.internal; 18 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; 19 import static com.github.tomakehurst.wiremock.client.WireMock.anyUrl; 20 import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; 27 import com.github.tomakehurst.wiremock.client.WireMock; 46 import software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClient; 47 import software.amazon.awssdk.http.nio.netty.RecordingResponseHandler; 62 try(SdkAsyncHttpClient client = NettyNioAsyncHttpClient.builder() in idleConnectionReaperDoesNotReapActiveConnections() argument 67 // Send requests for longer than the max-idle time, ensuring no connections are closed. in idleConnectionReaperDoesNotReapActiveConnections() 70 makeRequest(client); in idleConnectionReaperDoesNotReapActiveConnections() [all …]
|
| /external/aws-sdk-java-v2/.changes/2.17.x/ |
| D | 2.17.100.json | 3 "date": "2021-12-13", 7 "category": "Netty NIO HTTP Client", 9 "description": "Add \"ConcurrencyAcquireDuration\" metric for netty-nio-client"
|
| /external/aws-sdk-java-v2/archetypes/archetype-tools/src/main/resources/ |
| D | global.vm | 16 ## map the serviceId to service package and service client class name 22 #set( $regionEnum = $region.replace("-", "_").toUpperCase() ) 23 ## map the client module name to the client class name and package name 24 #if( $httpClient == 'url-connection-client') 27 #set ($serviceClientClassName = $serviceClientPrefix + 'Client') 28 #elseif ( $httpClient == 'apache-client') 31 #set ($serviceClientClassName = $serviceClientPrefix + 'Client') 32 #elseif ( $httpClient == 'netty-nio-client') 34 #set ($httpClientPackageName = 'nio.netty.' + $httpClientClassName) 36 #elseif ( $httpClient == 'aws-crt-client')
|
| /external/aws-sdk-java-v2/.changes/2.1.x/ |
| D | 2.1.0.json | 2 "date": "2018-11-19", 8 …lease see this [blog post](https://aws.amazon.com/blogs/developer/aws-sdk-for-java-2-x-released/)." 11 "category": "Netty NIO Async HTTP Client", 13 …Caught if the channel is not active. see [#452](https://github.com/aws/aws-sdk-java-v2/issues/452)" 18 …moved OSGi support because the Netty HTTP client does not yet support it. See [#726](https://githu… 23 "description": "Update Netty version to Netty 4.1.31.Final"
|
| D | 2.1.4.json | 2 "date": "2018-12-07", 18 "description": "Turns off trailing checksums when using SSE-C or SSE-KMS" 23 "description": "Netty 4.1.32.Final" 26 "category": "Netty NIO Async HTTP Client", 38 …404. See [#123](https://github.com/aws/aws-sdk-java-v2/issues/123), [#544](https://github.com/aws/… 46 "category": "Netty NIO Async HTTP Client", 48 …-continue` header sometimes are hanging because 100Continue response message is not being read aut… 53 … SDK to load the HTTP implementations. See [#56](https://github.com/aws/aws-sdk-java-v2/issues/56)"
|
| /external/aws-sdk-java-v2/buildspecs/ |
| D | archetype-native-image-test.yml | 7 - mvn clean install -pl :archetype-app-quickstart -P quick --am -T1C 8 - mvn clean install -pl :bom,:bom-internal -P quick 9 - CURRENT_VERSION=$(cat pom.xml | grep "<version>" | head -1 | cut -d\> -f 2 | cut -d\< -f 1) 10 - echo "Current version is $CURRENT_VERSION" 11 - cd .. && mkdir tmp 12 - cd tmp 13 - | 15 -DarchetypeGroupId=software.amazon.awssdk \ 16 -DarchetypeArtifactId=archetype-app-quickstart \ 17 -DarchetypeVersion=$CURRENT_VERSION \ [all …]
|
12345678