public interface ReactiveMybatisExecutor
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
close(boolean forceRollback)
close session
|
reactor.core.publisher.Mono<Void> |
commit(boolean required)
commit transaction
|
<E> reactor.core.publisher.Flux<E> |
query(org.apache.ibatis.mapping.MappedStatement mappedStatement,
Object parameter,
org.apache.ibatis.session.RowBounds rowBounds)
execute query
|
reactor.core.publisher.Mono<Void> |
rollback(boolean required)
rollback transaction
|
reactor.core.publisher.Mono<Integer> |
update(org.apache.ibatis.mapping.MappedStatement mappedStatement,
Object parameter)
execute update
|
reactor.core.publisher.Mono<Integer> update(org.apache.ibatis.mapping.MappedStatement mappedStatement, Object parameter)
mappedStatement - the mapped statementparameter - the parameter<E> reactor.core.publisher.Flux<E> query(org.apache.ibatis.mapping.MappedStatement mappedStatement,
Object parameter,
org.apache.ibatis.session.RowBounds rowBounds)
E - the type parametermappedStatement - the mapped statementparameter - the parameterrowBounds - the row boundsreactor.core.publisher.Mono<Void> commit(boolean required)
required - the requiredreactor.core.publisher.Mono<Void> rollback(boolean required)
required - the requiredreactor.core.publisher.Mono<Void> close(boolean forceRollback)
forceRollback - the force rollbackCopyright © 2022. All rights reserved.