Uses of Interface
st.orm.ResultCallback
Packages that use ResultCallback
-
Uses of ResultCallback in st.orm
Methods in st.orm with parameters of type ResultCallbackModifier and TypeMethodDescriptiondefault <T,R> R Query.getResult(Class<T> type, ResultCallback<T, R> callback) Execute a SELECT query and return the resulting rows as a stream of row instances.default <R> RQuery.getResult(ResultCallback<Object[], R> callback) Execute a SELECT query and return the resulting rows as a stream of row instances. -
Uses of ResultCallback in st.orm.repository
Methods in st.orm.repository with parameters of type ResultCallbackModifier and TypeMethodDescriptiondefault <R> REntityRepository.selectAll(ResultCallback<E, R> callback) Processes a stream of all entities of the type supported by this repository using the specified callback.default <R> RProjectionRepository.selectAll(ResultCallback<P, R> callback) Processes a stream of all projections of the type supported by this repository using the specified callback.default <R> REntityRepository.selectAllById(Stream<ID> ids, int batchSize, ResultCallback<E, R> callback) Retrieves a stream of entities based on their primary keys.default <R> REntityRepository.selectAllById(Stream<ID> ids, ResultCallback<E, R> callback) Processes a stream of entities corresponding to the provided IDs using the specified callback.default <R> RProjectionRepository.selectAllById(Stream<ID> ids, int batchSize, ResultCallback<P, R> callback) Retrieves a stream of projections based on their primary keys.default <R> RProjectionRepository.selectAllById(Stream<ID> ids, ResultCallback<P, R> callback) Processes a stream of projections corresponding to the provided IDs using the specified callback.default <R> REntityRepository.selectAllByRef(Stream<Ref<E>> refs, int batchSize, ResultCallback<E, R> callback) Retrieves a stream of entities based on their primary keys.default <R> REntityRepository.selectAllByRef(Stream<Ref<E>> refs, ResultCallback<E, R> callback) Processes a stream of entities corresponding to the provided IDs using the specified callback.default <R> RProjectionRepository.selectAllByRef(Stream<Ref<P>> refs, int batchSize, ResultCallback<P, R> callback) Retrieves a stream of projections based on their primary keys.default <R> RProjectionRepository.selectAllByRef(Stream<Ref<P>> refs, ResultCallback<P, R> callback) Processes a stream of projections corresponding to the provided IDs using the specified callback. -
Uses of ResultCallback in st.orm.template
Methods in st.orm.template with parameters of type ResultCallbackModifier and TypeMethodDescriptionfinal <X> XQueryBuilder.getResult(ResultCallback<R, X> callback) Executes the query and returns a stream of using the specified callback.