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.
|
Modifier and Type | Method and Description |
---|---|
PgxConfig |
ServerInstance.getPgxConfigObject()
Blocking version of
ServerInstance.getPgxConfigObjectAsync() . |
Modifier and Type | Method and Description |
---|---|
PgxFuture<PgxConfig> |
ServerInstance.getPgxConfigObjectAsync()
Gets the PGX config.
|
Modifier and Type | Method and Description |
---|---|
void |
ServerInstance.startEngine(PgxConfig config)
Blocking version of
ServerInstance.startEngineAsync(PgxConfig) . |
PgxFuture<java.lang.Void> |
ServerInstance.startEngineAsync(PgxConfig config)
Starts the PGX engine with a custom configuration.
|
Modifier and Type | Method and Description |
---|---|
default PgxFuture<PgxConfig> |
Control.getPgxConfigObject()
Gets the pgx config as
PgxConfig object |
Modifier and Type | Method and Description |
---|---|
default PgxFuture<java.lang.Void> |
Control.start(PgxConfig config) |
Modifier and Type | Method and Description |
---|---|
PgxConfig |
PgxConfigBuilder.build()
Builds the PgxConfig with a
parentPath of null . |
PgxConfig |
PgxConfigBuilder.build(java.lang.String parentPath)
Builds the PgxConfig.
|
static PgxConfig |
PgxConfigBuilder.buildPgxConfig(java.util.function.Consumer<PgxConfigBuilder> builderSetup)
Builds a
PgxConfig in-place |
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.init(java.io.InputStream is, java.lang.String parent)
Deprecated.
2.4.0 use
AbstractPgxConfig.getInstance(InputStream, String) instead |
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.
|
Modifier and Type | Method and Description |
---|---|
PgxConfigBuilder |
PgxConfigBuilder.putAll(PgxConfig config)
Puts all values from the given config into this builder
|
Constructor and Description |
---|
PgxConfigBuilder(PgxConfig config)
Constructs a PgxConfigBuilder initialized with the values from the given config
|
Copyright © 2017 Oracle Corp. All Rights Reserved.