Registry / http-client / async-http-client

async-http-client

JSON →
library3.0.10javamavenunverified

The Async HTTP Client library allows Java applications to easily execute HTTP requests and asynchronously process responses.

<dependency> <groupId>org.asynchttpclient</groupId> <artifactId>async-http-client</artifactId> <version>3.0.10</version> </dependency>
INSTALL
IMPORT
SIG · ASYNC-HTTP-CLIENT
A
async-http-client
http-clientjavav3.0.10
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AsyncHttpClient
org.asynchttpclient.AsyncHttpClient

Demonstrates an asynchronous HTTP GET request using AHC.

import org.asynchttpclient.AsyncHttpClient; import org.asynchttpclient.Dsl; public class Example { public static void main(String[] args) throws Exception { try (AsyncHttpClient client = Dsl.asyncHttpClient()) { client.prepareGet("https://example.com").execute().toCompletableFuture().thenAccept(System.out::println); } } }
Debug
Known issues
breakingAHC 3.x uses Netty 4.x; breaking changes from 2.x.
fix
Update code to use new API (e.g., Dsl.asyncHttpClient).
affects: >=3.0.0
Upgrade
Version history
3.0.10latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
40 hits · last 30 days
node
32
OpenAI (training)
1
Resources
async-http-client — mvn dependency:get async-http-client · libregistry