A collection of Reactive Programming (RxJava and Reactor) utilities forged and implemented in the Picnic backend.
Artifacts are hosted on Maven's Central Repository:
dependencies {
compile 'tech.picnic.reactive-support:rxjava-support:0.0.3'
}
<dependency>
<groupId>tech.picnic.reactive-support</groupId>
<artifactId>rxjava-support</artifactId>
<version>0.0.3</version>
</dependency>
This library contains a number of useful RxJava utilities. Listed below are example usages of some notable cases.
To propagate thread-local contexts to RxJava Scheduler
thread
pools you can create your own RxThreadLocal
containing a value fetcher
Supplier<T>
(that is called before a Runnable
is scheduled by a
Scheduler
), a context setter Consumer<T>
that sets the context on the new
RxJava Scheduler
thread, and an unset Consumer<T>
which reinstates the
original context after the Scheduler
has finished executing the scheduled
Runnable
. The same Consumer<T>
can be used to both configure and restore
the context.
Please see the code below for an example usage with initialisation in
ServletContextListener
, where we propagate the contents of SLF4J's MDC
map
and Spring's SecurityContextHolder
. This way that we can retain meaningful
logging attributes and execute secured methods from within RxJava-scheduled
actions.
@WebListener
public final class RxServletContextListener implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent sce) {
RxThreadLocal<?> mdcPropagation =
RxThreadLocal.from(
MDC::getCopyOfContextMap,
m -> {
if (m != null) {
MDC.setContextMap(m);
} else {
MDC.clear();
}
});
RxThreadLocal<?> securityContextPropagation =
RxThreadLocal.from(
SecurityContextHolder::getContext, SecurityContextHolder::setContext);
PicnicRxPlugins.configureContextPropagation(mdcPropagation, securityContextPropagation);
}
@Override
public void contextDestroyed(ServletContextEvent sce) {
PicnicRxPlugins.unsetContextPropagation();
Schedulers.shutdown();
}
}
The RetryStrategy
type is meant to be used in conjunction with
Flowable#retryWhen
to create and define more advanced
retry strategies. For example:
someFlowable
.retryWhen(
RetryStrategy.ifInstanceOf(TooManyRequestsException.class)
.withBackoffScheduler(Schedulers.io())
.exponentialBackoff(Duration.ofMillis(500)
.build())
This is a utility that can be used to convert RxJava reactive types into asynchronous Spring web types. See below for a number of example usages.
Converting Spring DeferredResult
:
@PostMapping("/endpoint")
public DeferredResult<Integer> someEndpoint() {
return Single.just(1).to(singleToDeferredResult());
}
@GetMapping("/another")
public DeferredResult<ImmutableSet<Integer>> someOtherEndpoint() {
return Flowable.just(1, 2, 3).to(publisherToDeferredResult(ImmutableSet::copyOf));
}
Converting to Spring's SseEmitter
:
@GetMapping("/sse")
public SseEmitter sseEndpoint() {
return Flowable.just(1, 2, 3).to(publisherToSse());
}
Contributions are welcome! Feel free to file an issue or open a pull request.
When submitting changes, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. New code must be covered by tests. As a rule of thumb, overall test coverage should not decrease. (There are exceptions to this rule, e.g. when more code is deleted than added.)