Skip to content
Advertisement

Mono.subscriberContext() returning old context

I have a class PublishContext with a method context() as follows :

JavaScript

In above code, context object is Context0@744 and context1 is Context@747 which is understandable since context is immutable and always returns a new context.

In my main class, I have the following code :

JavaScript

Here, I am getting context as Context0@744, i.e Old context and hence, getting “context is empty” exception. Can someone please explain this behaviour? Also, How can I access context0@747 which I am returning from my context() method?

Advertisement

Answer

  • A) the Context write needs to be part of the same chain of operators
  • B) it needs to be “downstream” of the part where you need to read it

As such, a “self-contained” sequence where you have the source (Mono.empty()), the Context write (.subscriberContext(...)) AND the final step of subscribing (objectMono.subscribe()) doesn’t make much sense.

Maybe try turning context() into a decorating method?

JavaScript

Then apply and read it:

JavaScript

This prints (provided the main doesn’t exit too early):

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement