I have a problem understanding Context. So documentations says that Context is:
A key/value store that is propagated between components such as operators via the context protocol. Contexts are ideal to transport orthogonal information such as tracing or security tokens.
Great.
Now let's suppose we want to propagate something using Context to have it everywhere. To call another async code we simply use the flatMap() method.
Problem: how to access Context inside called method?
Sample (simple) code:
public class TestFlatMap {
public static void main(final String ...args) {
final Flux<String> greetings = Flux.just("Hubert", "Sharon")
.flatMap(TestFlatMap::nameToGreeting)
.subscriberContext(context ->
Context.of("greetingWord", "Hello") // context initialized
);
greetings.subscribe(System.out::println);
}
private static Mono<String> nameToGreeting(final String name) {
return Mono.just("Hello " + name + " !!!"); // ALERT: we don't have Context here
}
}
The called method can be (and most likely will be) in another class.
Thanks for help in advance !
Edit: removed some code to make the question more concise and straight to the point.