Interface ReactiveDomainResultsAssembler<J>
-
- All Superinterfaces:
DomainResultAssembler<J>
@Incubating public interface ReactiveDomainResultsAssembler<J> extends DomainResultAssembler<J>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default J
assemble(RowProcessingState rowProcessingState)
default J
assemble(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
default CompletionStage<J>
reactiveAssemble(ReactiveRowProcessingState rowProcessingState)
Convenience form ofassemble(RowProcessingState, JdbcValuesSourceProcessingOptions)
CompletionStage<J>
reactiveAssemble(ReactiveRowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
-
Methods inherited from interface org.hibernate.sql.results.graph.DomainResultAssembler
getAssembledJavaType, resolveState
-
-
-
-
Method Detail
-
assemble
default J assemble(RowProcessingState rowProcessingState)
- Specified by:
assemble
in interfaceDomainResultAssembler<J>
-
assemble
default J assemble(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
- Specified by:
assemble
in interfaceDomainResultAssembler<J>
-
reactiveAssemble
CompletionStage<J> reactiveAssemble(ReactiveRowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
-
reactiveAssemble
default CompletionStage<J> reactiveAssemble(ReactiveRowProcessingState rowProcessingState)
Convenience form ofassemble(RowProcessingState, JdbcValuesSourceProcessingOptions)
-
-