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.
|
Modifier and Type | Method and Description |
---|---|
UpdateConsistencyModel |
ExecutionEnvironment.getUpdateConsistencyModel()
Blocking version of
ExecutionEnvironment.getUpdateConsistencyModelAsync() . |
Modifier and Type | Method and Description |
---|---|
PgxFuture<UpdateConsistencyModel> |
ExecutionEnvironment.getUpdateConsistencyModelAsync()
Gets the consistency model to be used with in-place updates (if enabled).
|
Modifier and Type | Method and Description |
---|---|
void |
ExecutionEnvironment.setUpdateConsistencyModel(UpdateConsistencyModel model)
Blocking version of
ExecutionEnvironment.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).
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
PgxConfigBuilder |
PgxConfigBuilder.setInPlaceUpdateConsistencyModel(UpdateConsistencyModel inPlaceUpdateConsistencyModel)
Consistency model used when in-place updates occur.
|
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.