An open API service indexing awesome lists of open source software.

https://github.com/zhong-j-yu/bayou

Async HTTP server/client - high performance in functional style, full-featured.
https://github.com/zhong-j-yu/bayou

Last synced: 3 months ago
JSON representation

Async HTTP server/client - high performance in functional style, full-featured.

Awesome Lists containing this project

README

          

# bayou.io

Async http server & client for Java

For more information, see

## HttpServer

HttpHandler handler = request -> HttpResponse.text(200, "Hello World");

HttpServer server = new HttpServer(handler);
server.conf().trafficDump(System.out::print);
server.start();

## HttpClient

HttpClient client = new HttpClient();

Async asyncRes = client.doGet( "https://example.com" );