You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Flux / Mono doesn't support null values. In order to keep the consistency and caching logic same between different versions of SDK, we need to update the consistency layer and caching layer with value holder objects, which can contain null values, and then can be passed around API calls.
Describe the solution you'd like
Use value holder objects which can contain null values.
Describe alternatives you've considered
Current alternate is to use switchIfEmpty() or Mono.optional or Flux.optional (which is empty() internally)
But this has some issues.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Flux / Mono doesn't support null values. In order to keep the consistency and caching logic same between different versions of SDK, we need to update the consistency layer and caching layer with value holder objects, which can contain null values, and then can be passed around API calls.
Describe the solution you'd like
Use value holder objects which can contain null values.
Describe alternatives you've considered
Current alternate is to use switchIfEmpty() or Mono.optional or Flux.optional (which is empty() internally)
But this has some issues.
The text was updated successfully, but these errors were encountered: