Uses of Interface
org.hibernate.reactive.context.Context.Key
-
Packages that use Context.Key Package Description org.hibernate.reactive.context Strategies for associating state with the current reactive stream. -
-
Uses of Context.Key in org.hibernate.reactive.context
Methods in org.hibernate.reactive.context with parameters of type Context.Key Modifier and Type Method Description <T> T
Context. get(Context.Key<T> key)
Get a value associated with the current reactive stream, or return null.<T> void
Context. put(Context.Key<T> key, T instance)
Associate a value with the current reactive stream.void
Context. remove(Context.Key<?> key)
Remove a value associated with the current reactive stream.
-