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 PgxConfigServerInstance. 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 voidServerInstance. startEngine(PgxConfig config)Blocking version ofServerInstance.startEngineAsync(PgxConfig).PgxFuture<java.lang.Void>ServerInstance. startEngineAsync(PgxConfig config)Starts the PGX engine with a custom configuration.voidServerInstance. 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 asPgxConfigobjectMethods 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 PgxConfigPgxConfigBuilder. build()Builds the PgxConfig with aparentPathofnull.PgxConfigPgxConfigBuilder. build(java.lang.String parentPath)Builds the PgxConfig.static PgxConfigPgxConfigBuilder. buildPgxConfig(java.util.function.Consumer<PgxConfigBuilder> builderSetup)Builds aPgxConfigin-placestatic PgxConfigAbstractPgxConfig. configFromJson(java.lang.String json)static PgxConfigAbstractPgxConfig. configFromMap(java.util.Map<PgxConfig.Field,java.lang.Object> configValues)static PgxConfigAbstractPgxConfig. getInstance()static PgxConfigAbstractPgxConfig. getInstance(java.io.InputStream is, java.lang.String parent)creates a server config from an input stream specified by parameter.static PgxConfigAbstractPgxConfig. getInstance(java.lang.String path)creates a server config from a file path specified by parameter.static PgxConfigPgxConfig. parse(java.io.InputStream is, boolean strict, java.lang.String parentPath)Parses an input stream.static PgxConfigPgxConfig. parse(java.util.Map<java.lang.String,java.lang.Object> raw, boolean strict, java.lang.String parentPath)Parses a raw key/value mapping.static PgxConfigPgxConfig. 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 voidLinkTemplateUtils. initConfig(PgxConfig pgxConfig)PgxConfigBuilderPgxConfigBuilder. 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
-