-
Updated
on Jan 5, 2021 - Java
netty
Here are 1,156 public repositories matching this topic...
-
Updated
on Mar 6, 2021 - Java
-
Updated
on Mar 5, 2021 - Java
-
Updated
on Feb 28, 2021 - Java
It would be nice to pass multiple actions to a checkIf
method , the same way as a check
allows through the comma.
So, for example, instead of writing this:
.check(
checkIf("${first.exists()}")(do_first),
checkIf("$first.exists()}")(do_second),
checkIf("${first.exists()}")do_third)
it would be nice to have API as follows:
check(checkIf("${first.exists()}")(do
-
Updated
on Mar 2, 2021
-
Updated
on Jan 4, 2021 - Java
Netty's event loop threads are spawned lazily, i.e. they are created on the first task is scheduled on. A user sometimes wants to ensure the event loop threads are started when the server starts up.
-
Updated
on Mar 7, 2021 - Java
-
Updated
on Mar 4, 2021 - Java
-
Updated
on Feb 10, 2021
-
Updated
on Mar 5, 2021 - Java
-
Updated
on Oct 13, 2020 - Java
-
Updated
on Jun 28, 2020
My following WebClient is working fine with internet connection but not through our proxy connection.
WebClient webClient = WebClient.builder()
.baseUrl("https://targetsite.com")
.build();
webClient.post()
.uri("/service/serviceName")
.body(BodyInserters.fromObject(reqData))
.retrieve()
.bodyToMono(WebServiceResponse.class)
Event though, the sam
-
Updated
on Jan 18, 2021 - Java
-
Updated
on Mar 4, 2021 - Java
-
Updated
on Mar 5, 2021 - Java
-
Updated
on Oct 12, 2020 - Java
Improve this page
Add a description, image, and links to the netty topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the netty topic, visit your repo's landing page and select "manage topics."
这里的路由和server通信是否可以用一个长连接来维护更好