Uses of Class
oracle.pgx.config.InteractionMode
-
Packages that use InteractionMode Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of InteractionMode in oracle.pgx.api
Methods in oracle.pgx.api that return InteractionMode Modifier and Type Method Description InteractionMode
ServerInstance. getClientServerInteractionMode()
Gets the client/server interaction mode (BLOCKING
,ASYNC_POLLING
) -
Uses of InteractionMode in oracle.pgx.config
Methods in oracle.pgx.config that return InteractionMode Modifier and Type Method Description InteractionMode
ClientConfig. getClientServerInteractionMode()
ifasync_polling
the PGX client would poll the status of the future until it's completed.static InteractionMode
InteractionMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InteractionMode[]
InteractionMode. 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 InteractionMode Modifier and Type Method Description ClientConfigBuilder
ClientConfigBuilder. setClientServerInteractionMode(InteractionMode interactionMode)
Sets the client/server interaction mode (BLOCKING
,ASYNC_POLLING
)
-