Class ReactiveQueryExecutorLookup
java.lang.Object
org.hibernate.reactive.session.impl.ReactiveQueryExecutorLookup
This is a dirty trick to mitigate the performance impact of JDK-8180450;
hopefully temporary but we have no indication about a possible fix at
the moment.
The gist is that we need to avoid repeatedly checking for ReactiveSessionImpl
to implement certain interfaces; we frequently need to cast the current
to :
let's take advantage of the fact that it's almost certainly going to be
of a known concrete type, specifically a .
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ReactiveQueryProducerextract(org.hibernate.engine.spi.SharedSessionContractImplementor session) Extracts the ReactiveQueryExecutor from a Session.
-
Constructor Details
-
ReactiveQueryExecutorLookup
public ReactiveQueryExecutorLookup()
-
-
Method Details