Registry / http-client / jetty-reactive-httpclient

jetty-reactive-httpclient

JSON →
library4.1.4javamavenunverified

Jetty ReactiveStreams HttpClient provides a reactive HTTP client based on Jetty and Reactive Streams.

<dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-reactive-httpclient</artifactId> <version>4.1.4</version> </dependency>
INSTALL
IMPORT
SIG · JETTY-REACTIVE-HTT
J
jetty-reactive-httpclient
http-clientjavav4.1.4
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.

ReactiveHttpClient
org.eclipse.jetty.reactive.client.ReactiveHttpClient

Make a reactive HTTP GET request.

import org.eclipse.jetty.reactive.client.ReactiveHttpClient; import org.eclipse.jetty.client.HttpClient; public class ReactiveClientExample { public static void main(String[] args) throws Exception { HttpClient httpClient = new HttpClient(); httpClient.start(); ReactiveHttpClient reactiveClient = ReactiveHttpClient.from(httpClient); reactiveClient.GET("http://example.com").subscribe(response -> { System.out.println(response.getStatus()); }); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.1.4latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
OpenAI (training)
1
Resources
jetty-reactive-httpclient — mvn dependency:get jetty-reactive-httpclient · libregistry