Package org.hibernate.query.spi
Interface DomainQueryExecutionContext
-
- All Known Implementing Classes:
AbstractQuery
,AbstractSelectionQuery
,DelegatingDomainQueryExecutionContext
,NativeQueryImpl
,ProcedureCallImpl
,QuerySqmImpl
,SqmSelectionQueryImpl
public interface DomainQueryExecutionContext
Context for execution ofQuery
"
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Callback
getCallback()
The callback referenceQueryOptions
getQueryOptions()
The options to use for execution of the queryQueryParameterBindings
getQueryParameterBindings()
The domain parameter bindingsdefault Class<?>
getResultType()
SharedSessionContractImplementor
getSession()
The underlying sessiondefault boolean
hasCallbackActions()
-
-
-
Method Detail
-
getQueryOptions
QueryOptions getQueryOptions()
The options to use for execution of the query
-
getQueryParameterBindings
QueryParameterBindings getQueryParameterBindings()
The domain parameter bindings
-
getCallback
Callback getCallback()
The callback reference
-
hasCallbackActions
default boolean hasCallbackActions()
-
getSession
SharedSessionContractImplementor getSession()
The underlying session
-
getResultType
default Class<?> getResultType()
-
-