Uses of Class
oracle.pgx.config.UpdateConsistencyModel
-
Packages that use UpdateConsistencyModel Package Description oracle.pgx.api.executionenvironment This packages contains classes for session execution environments.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of UpdateConsistencyModel in oracle.pgx.api.executionenvironment
Methods in oracle.pgx.api.executionenvironment that return UpdateConsistencyModel Modifier and Type Method Description UpdateConsistencyModel
ExecutionEnvironment. getUpdateConsistencyModel()
Blocking version ofExecutionEnvironment.getUpdateConsistencyModelAsync()
.Methods in oracle.pgx.api.executionenvironment that return types with arguments of type UpdateConsistencyModel Modifier and Type Method Description PgxFuture<UpdateConsistencyModel>
ExecutionEnvironment. getUpdateConsistencyModelAsync()
Gets the consistency model to be used with in-place updates (if enabled).Methods in oracle.pgx.api.executionenvironment with parameters of type UpdateConsistencyModel Modifier and Type Method Description void
ExecutionEnvironment. setUpdateConsistencyModel(UpdateConsistencyModel model)
Blocking version ofExecutionEnvironment.setUpdateConsistencyModelAsync(UpdateConsistencyModel)
.PgxFuture<java.lang.Void>
ExecutionEnvironment. setUpdateConsistencyModelAsync(UpdateConsistencyModel model)
Sets the consistency model to be used with in-place updates (if enabled).<T> T
ExecutionEnvironment. withUpdateConsistencyModel(UpdateConsistencyModel model, java.util.function.Supplier<PgxFuture<T>> asyncRequest)
<T> PgxFuture<T>
ExecutionEnvironment. withUpdateConsistencyModelAsync(UpdateConsistencyModel model, java.util.function.Supplier<PgxFuture<T>> asyncRequest)
Executes the given asynchronous request with the given consistency model (only relevant if in-place updates are enabled). -
Uses of UpdateConsistencyModel in oracle.pgx.config
Methods in oracle.pgx.config that return UpdateConsistencyModel Modifier and Type Method Description UpdateConsistencyModel
PgxConfig. getInPlaceUpdateConsistencyModel()
Consistency model used when in-place updates occur.static UpdateConsistencyModel
UpdateConsistencyModel. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UpdateConsistencyModel[]
UpdateConsistencyModel. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in oracle.pgx.config with parameters of type UpdateConsistencyModel Modifier and Type Method Description PgxConfigBuilder
PgxConfigBuilder. setInPlaceUpdateConsistencyModel(UpdateConsistencyModel inPlaceUpdateConsistencyModel)
Consistency model used when in-place updates occur.
-