Uses of Interface
migratedb.v1.core.api.internal.util.SqlCallable
Packages that use SqlCallable
Package
Description
Private API.
Private API.
Private API.
-
Uses of SqlCallable in migratedb.v1.core.api.internal.database
Methods in migratedb.v1.core.api.internal.database with parameters of type SqlCallableModifier and TypeMethodDescription<T> TDatabaseExecutionStrategy.execute(SqlCallable<T> callable) Execute the given callable using the defined strategy. -
Uses of SqlCallable in migratedb.v1.core.internal.database
Methods in migratedb.v1.core.internal.database with parameters of type SqlCallableModifier and TypeMethodDescription<T> TDefaultExecutionStrategy.execute(SqlCallable<T> callable) -
Uses of SqlCallable in migratedb.v1.core.internal.database.cockroachdb
Methods in migratedb.v1.core.internal.database.cockroachdb with parameters of type SqlCallableModifier and TypeMethodDescription<T> TCockroachDBRetryingStrategy.execute(SqlCallable<T> callable) -
Uses of SqlCallable in migratedb.v1.core.internal.strategy
Methods in migratedb.v1.core.internal.strategy with parameters of type SqlCallableModifier and TypeMethodDescriptionvoidRetryStrategy.doWithRetries(SqlCallable<Boolean> callable, String interruptionMessage, String retriesExceededMessage) Keep retrying a Callable with a potentially varying wait on each iteration, until one of the following happens: - the callable returnstrue; - an InterruptedException happens - the number of retries is exceeded.