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 UpdateConsistencyModelExecutionEnvironment. 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 voidExecutionEnvironment. 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> TExecutionEnvironment. 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 UpdateConsistencyModelPgxConfig. getInPlaceUpdateConsistencyModel()Consistency model used when in-place updates occur.static UpdateConsistencyModelUpdateConsistencyModel. 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 PgxConfigBuilderPgxConfigBuilder. setInPlaceUpdateConsistencyModel(UpdateConsistencyModel inPlaceUpdateConsistencyModel)Consistency model used when in-place updates occur. 
 -