Skip to content
#

flux

Here are 935 public repositories matching this topic...

osi
osi commented Jan 22, 2021

The window operators should indicate if the returned Flux for each window is safe to subscribe to multiple times.

Documentation Issue

I had a data processing pipeline that I introduced batching to, using the window operator. In this pipeline, it will retry a batch if it faces a transient error. When batching was added, and it retried, I saw a failure of `IllegalStateException: UnicastP

VsKrishna87
VsKrishna87 commented Nov 4, 2019

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

Improve this page

Add a description, image, and links to the flux topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the flux topic, visit your repo's landing page and select "manage topics."

Learn more