Uses of Interface
migratedb.v1.core.api.internal.util.SqlCallable
-
Packages that use SqlCallable Package Description migratedb.v1.core.api.internal.database migratedb.v1.core.internal.database Private API.migratedb.v1.core.internal.database.cockroachdb Private API.migratedb.v1.core.internal.strategy Private API. -
-
Uses of SqlCallable in migratedb.v1.core.api.internal.database
Methods in migratedb.v1.core.api.internal.database with parameters of type SqlCallable Modifier and Type Method Description <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 SqlCallable Modifier and Type Method Description <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 SqlCallable Modifier and Type Method Description <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 SqlCallable Modifier and Type Method Description voidRetryStrategy. 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.
-