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.api.frames |
This package contains classes and utilities to build and manipulate PGX Frames.
|
Modifier and Type | Method and Description |
---|---|
SessionContext |
PgxSession.getSessionContext()
Gets the context describing the session
|
Modifier and Type | Method and Description |
---|---|
PgxSession |
ServerInstance.getSession(SessionContext sessionContext)
Blocking version of
ServerInstance.getSessionAsync(SessionContext) . |
PgxFuture<PgxSession> |
ServerInstance.getSessionAsync(SessionContext sessionContext)
Gets a session by
SessionContext . |
Modifier and Type | Method and Description |
---|---|
default PgxFuture<oracle.pgx.common.pojo.admin.SessionInfo> |
Control.getSessionInfo(SessionContext sessionContext)
Deprecated.
since 20.2.0
|
java.lang.Object |
Control.getUserData(SessionContext sessionContext, java.lang.String key)
get session-private user data by key.
|
Constructor and Description |
---|
PgxFrameBuilder(SessionContext sessionContext, oracle.pgx.api.internal.Core core, java.util.List<ColumnDescriptor> schema, java.util.function.Function<oracle.pgx.api.internal.FrameMetaData,PgxFrame> buildCallback)
Create a PgxFrameBuilder, this will also create a FrameBuilder on the server.
|