Uses of Interface
org.axonframework.common.jdbc.JdbcUtils.SqlResultConverter
Packages that use JdbcUtils.SqlResultConverter
Package
Description
JDBC utilities and connection handling.
Part of the Axon Messaging module.
-
Uses of JdbcUtils.SqlResultConverter in org.axonframework.common.jdbc
Methods in org.axonframework.common.jdbc that return JdbcUtils.SqlResultConverterModifier and TypeMethodDescriptionstatic <R> JdbcUtils.SqlResultConverter<List<R>> JdbcUtils.listResults(JdbcUtils.SqlResultConverter<R> singleResultConverter) Create a converter that produces a List of results of typeRfrom a converter that produces a single result.Methods in org.axonframework.common.jdbc with parameters of type JdbcUtils.SqlResultConverterModifier and TypeMethodDescriptionstatic <R> RJdbcUtils.executeQuery(Connection connection, JdbcUtils.SqlFunction sqlFunction, JdbcUtils.SqlResultConverter<R> sqlResultConverter, Function<SQLException, RuntimeException> errorHandler) Execute the query given by thesqlFunction.static <R> RJdbcUtils.executeQuery(Connection connection, JdbcUtils.SqlFunction sqlFunction, JdbcUtils.SqlResultConverter<R> sqlResultConverter, Function<SQLException, RuntimeException> errorHandler, boolean closeConnection) Execute the query given by thesqlFunction.static <R> JdbcUtils.SqlResultConverter<List<R>> JdbcUtils.listResults(JdbcUtils.SqlResultConverter<R> singleResultConverter) Create a converter that produces a List of results of typeRfrom a converter that produces a single result. -
Uses of JdbcUtils.SqlResultConverter in org.axonframework.messaging.eventhandling.deadletter.jdbc
Constructors in org.axonframework.messaging.eventhandling.deadletter.jdbc with parameters of type JdbcUtils.SqlResultConverterModifierConstructorDescriptionPagingJdbcIterable(TransactionalExecutor<Connection> executor, PagingJdbcIterable.PagingStatementSupplier pagingQuerySupplier, int pageSize, Duration queryTimeout, JdbcUtils.SqlResultConverter<R> resultConverter, Function<SQLException, RuntimeException> errorHandler) Construct a newIterableof typeR, utilizing paging queries to retrieve the entries.PagingJdbcIterable(TransactionalExecutor<Connection> executor, PagingJdbcIterable.PagingStatementSupplier pagingQuerySupplier, int pageSize, JdbcUtils.SqlResultConverter<R> resultConverter, Function<SQLException, RuntimeException> errorHandler) Construct a newIterableof typeR, utilizing paging queries to retrieve the entries.