reactor
Here are 335 public repositories matching this topic...
-
Updated
Mar 3, 2020 - C++
Please check the reproducible example here: https://github.com/michaelr524/reactor-netty-ssl-leak
mvn clean package
java -jar target/reactor-netty-ssl-leak-1.0-SNAPSHOT.jar
- Reactor version(s) used: 0.9.4.RELEASE
- Other relevant libraries versions (eg.
netty, ...): - JVM version (
javar -version):
openjdk version "12.0.2" 2019-07-16
OpenJDK Runtime Environment (build 12.0
-
Updated
May 9, 2020 - Go
-
Updated
Jun 8, 2020 - Java
-
Updated
Jun 23, 2020 - PHP
-
Updated
Jun 24, 2020 - Java
-
Updated
Jan 4, 2020 - C++
-
Updated
Apr 16, 2018 - C
We're using cf-java-client in a multi-threaded application. Are DefaultConnectionContext etc. thread-safe? This is not documented right now, and they make heavy use of threading internally (with thread pools etc.), which makes me wonder at what kind of level I can reuse objects between threads (can I reuse clients? connection contexts? none of the above?)
-
Updated
Jun 23, 2020 - Java
Here is the doc of CacheFlux with the map endpoints:
String key = "myCategory";
LoadingCache<String, Object> graphs = Caffeine
.newBuilder()
.maximumSize(10_000)
.expireAfterWrite(5, TimeUnit.MINUTES)
.refreshAfterWrite(1, TimeUnit.MINUTES)
.build(key -> createExpensiveGraph(key));
Flux<Integer> cachedMyCategory =
-
Updated
Mar 26, 2018 - Java
-
Updated
Jun 24, 2020 - Java
-
Updated
Apr 14, 2020 - C++
-
Updated
Jun 8, 2020 - TypeScript
feign.reactor.version=1.0.30
Final request path: ReactiveFeignClient.path + "/" + GetMapping.value
If GetMapping.value is default "/" is added anyway.
The behavior is different from FeignClient
Example:
@GetMapping(produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
Result get(@RequestParam(value = "param") );
@ReactiveFeignClient(
path = "/my/path",
)
Expecte
-
Updated
Nov 27, 2019 - Java
-
Updated
Jun 23, 2020 - Java
-
Updated
Mar 25, 2018 - Java
-
Updated
Jun 22, 2019 - Java
-
Updated
Mar 11, 2018 - Java
WebFlux includes reactive WebSocket client and server support. Both client and server are supported on the Java WebSocket API (JSR-356), Jetty, Undertow, Reactor Netty, and RxNetty.
On the server side, declare a WebSocketHandlerAdapter and then sim
-
Updated
Mar 20, 2019 - C++
-
Updated
Dec 26, 2018 - Java
Improve this page
Add a description, image, and links to the reactor topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reactor topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Currently, the guide https://spring.io/guides/gs/gateway/#_writing_tests suggest to use "WireMock from Spring Cloud Contract in order stand up a server".
Unit tests of the people using this library to make gateways would be more performant, easier to write and more stable if they didn't make real tcp connections to do http reques