Uses of Class
oracle.pgx.config.PgxConfig
-
Packages that use PgxConfig Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.admin This package contains the administrative interfaces of PGX.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of PgxConfig in oracle.pgx.api
Methods in oracle.pgx.api that return PgxConfig Modifier and Type Method Description PgxConfig
ServerInstance. getPgxConfigObject()
Blocking version ofServerInstance.getPgxConfigObjectAsync()
.Methods in oracle.pgx.api that return types with arguments of type PgxConfig Modifier and Type Method Description PgxFuture<PgxConfig>
ServerInstance. getPgxConfigObjectAsync()
Gets the PGX config.Methods in oracle.pgx.api with parameters of type PgxConfig Modifier and Type Method Description void
ServerInstance. startEngine(PgxConfig config)
Blocking version ofServerInstance.startEngineAsync(PgxConfig)
.PgxFuture<java.lang.Void>
ServerInstance. startEngineAsync(PgxConfig config)
Starts the PGX engine with a custom configuration.void
ServerInstance. updatePgxConfig(PgxConfig config)
Blocking version ofServerInstance.updatePgxConfigAsync(PgxConfig)
.PgxFuture<java.lang.Void>
ServerInstance. updatePgxConfigAsync(PgxConfig config)
Replaces the current PGX config with the given configuration. -
Uses of PgxConfig in oracle.pgx.api.admin
Methods in oracle.pgx.api.admin that return types with arguments of type PgxConfig Modifier and Type Method Description default PgxFuture<PgxConfig>
Control. getPgxConfigObject()
Gets the pgx config asPgxConfig
objectMethods in oracle.pgx.api.admin with parameters of type PgxConfig Modifier and Type Method Description default PgxFuture<java.lang.Void>
Control. start(PgxConfig config)
default PgxFuture<java.lang.Void>
Control. updatePgxConfig(PgxConfig config)
Replaces the current PGX config with the given configuration. -
Uses of PgxConfig in oracle.pgx.config
Methods in oracle.pgx.config that return PgxConfig Modifier and Type Method Description PgxConfig
PgxConfigBuilder. build()
Builds the PgxConfig with aparentPath
ofnull
.PgxConfig
PgxConfigBuilder. build(java.lang.String parentPath)
Builds the PgxConfig.static PgxConfig
PgxConfigBuilder. buildPgxConfig(java.util.function.Consumer<PgxConfigBuilder> builderSetup)
Builds aPgxConfig
in-placestatic PgxConfig
AbstractPgxConfig. configFromJson(java.lang.String json)
static PgxConfig
AbstractPgxConfig. configFromMap(java.util.Map<PgxConfig.Field,java.lang.Object> configValues)
static PgxConfig
AbstractPgxConfig. getInstance()
static PgxConfig
AbstractPgxConfig. getInstance(java.io.InputStream is, java.lang.String parent)
creates a server config from an input stream specified by parameter.static PgxConfig
AbstractPgxConfig. getInstance(java.lang.String path)
creates a server config from a file path specified by parameter.static PgxConfig
PgxConfig. parse(java.io.InputStream is, boolean strict, java.lang.String parentPath)
Parses an input stream.static PgxConfig
PgxConfig. parse(java.util.Map<java.lang.String,java.lang.Object> raw, boolean strict, java.lang.String parentPath)
Parses a raw key/value mapping.static PgxConfig
PgxConfig. parse(java.util.Properties props, boolean strict)
Parses a properties file.Methods in oracle.pgx.config with parameters of type PgxConfig Modifier and Type Method Description static void
LinkTemplateUtils. initConfig(PgxConfig pgxConfig)
PgxConfigBuilder
PgxConfigBuilder. putAll(PgxConfig config)
Puts all values from the given config into this builderConstructors in oracle.pgx.config with parameters of type PgxConfig Constructor Description PgxConfigBuilder(PgxConfig config)
Constructs a PgxConfigBuilder initialized with the values from the given config
-