Skip to content

wdonne/pincette-netty-http

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Simple Netty HTTP Client and Server

With this library you can run an HTTP server on top of Netty. You just give it a function to handle the requests. The request body can be consumed as a backpressured reactive streams publisher or as an accumulated input stream. The response bodies are always reactive streams publishers. The handler functions are not supposed to do blocking calls.

There is also a simple HTTP client API using Netty. It has a reactive streams interface with backpressure for the response body.

Read more in the API documentation.