Uses of Interface
com.atlassian.bamboo.upgrade.utils.DatabaseUpgradePaginator.PaginatedDataSupplier
-
Packages that use DatabaseUpgradePaginator.PaginatedDataSupplier Package Description com.atlassian.bamboo.upgrade.utils com.atlassian.bamboo.upgrade.utils.impl -
-
Uses of DatabaseUpgradePaginator.PaginatedDataSupplier in com.atlassian.bamboo.upgrade.utils
Methods in com.atlassian.bamboo.upgrade.utils with parameters of type DatabaseUpgradePaginator.PaginatedDataSupplier Modifier and Type Method Description <T> void
DatabaseUpgradePaginator. forEach(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, int pageSize, @NotNull Consumer<T> consumer)
Executes the givenconsumer
for each element of an underlying large collection of elements.<T> void
DatabaseUpgradePaginator. forEach(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, @NotNull Consumer<T> consumer)
Executes the givenconsumer
for each element of an underlying large collection of elements.<T> void
DatabaseUpgradePaginator. forEachPage(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, int pageSize, @NotNull Consumer<Collection<T>> consumer)
Executes the givenconsumer
for each page of an underlying large collection of elements.<T> void
DatabaseUpgradePaginator. forEachPage(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, @NotNull Consumer<Collection<T>> consumer)
Executes the givenconsumer
on each page of an underlying large collection of elements. -
Uses of DatabaseUpgradePaginator.PaginatedDataSupplier in com.atlassian.bamboo.upgrade.utils.impl
Methods in com.atlassian.bamboo.upgrade.utils.impl with parameters of type DatabaseUpgradePaginator.PaginatedDataSupplier Modifier and Type Method Description <T> void
DatabaseUpgradePaginatorImpl. forEach(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, int pageSize, @NotNull Consumer<T> consumer)
<T> void
DatabaseUpgradePaginatorImpl. forEach(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, @NotNull Consumer<T> consumer)
<T> void
DatabaseUpgradePaginatorImpl. forEachPage(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, int pageSize, @NotNull Consumer<Collection<T>> elementConsumer)
<T> void
DatabaseUpgradePaginatorImpl. forEachPage(@NotNull DatabaseUpgradePaginator.PaginatedDataSupplier<T> dataSupplier, @NotNull Consumer<Collection<T>> elementConsumer)
-