Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
Modifier and Type | Method and Description |
---|---|
java.util.Deque<GraphMetaData> |
PgxSession.getAvailableSnapshots(GraphConfig config)
Deprecated.
since 20.0.0, as snapshots of a graph with "snapshots_source=CHANGE_SET" are not visible from here;
use
PgxSession.getAvailableSnapshots(PgxGraph) instead |
java.util.Deque<GraphMetaData> |
PgxSession.getAvailableSnapshots(PgxGraph snapshot)
Blocking version of
PgxSession.getAvailableSnapshotsAsync(PgxGraph) . |
PgxFuture<java.util.Deque<GraphMetaData>> |
PgxSession.getAvailableSnapshotsAsync(GraphConfig config)
Deprecated.
since 20.0.0, as snapshots of a graph with "snapshots_source=CHANGE_SET" are not visible from here;
use
PgxSession.getAvailableSnapshotsAsync(PgxGraph) instead |
PgxFuture<java.util.Deque<GraphMetaData>> |
PgxSession.getAvailableSnapshotsAsync(PgxGraph graph)
Gets a list of the
GraphMetaData information of available in-memory snapshots of graph . |
Modifier and Type | Method and Description |
---|---|
PgxGraph |
PgxSession.readGraphAsOf(GraphConfig config,
GraphMetaData metaData)
Blocking version of
PgxSession.readGraphAsOfAsync(GraphConfig, GraphMetaData) . |
PgxGraph |
PgxSession.readGraphAsOf(GraphConfig config,
GraphMetaData metaData,
java.lang.String newGraphName)
Blocking version of
PgxSession.readGraphAsOfAsync(GraphConfig, GraphMetaData, String) . |
PgxFuture<PgxGraph> |
PgxSession.readGraphAsOfAsync(GraphConfig config,
GraphMetaData metaData)
Reads a graph and its properties of a specific version (metaData) into memory.
|
PgxFuture<PgxGraph> |
PgxSession.readGraphAsOfAsync(GraphConfig config,
GraphMetaData metaData,
java.lang.String newGraphName)
Reads a graph and its properties of a specific version (metaData) into memory.
|
void |
PgxSession.setSnapshot(PgxGraph graph,
GraphMetaData metaData)
Blocking version of
PgxSession.setSnapshotAsync(PgxGraph, GraphMetaData) . |
void |
PgxSession.setSnapshot(PgxGraph graph,
GraphMetaData metaData,
boolean forceDeleteProperties)
Blocking version of
PgxSession.setSnapshotAsync(PgxGraph, GraphMetaData, boolean) . |
PgxFuture<java.lang.Void> |
PgxSession.setSnapshotAsync(PgxGraph graph,
GraphMetaData metaData)
Sets a graph to a specific snapshot.
|
PgxFuture<java.lang.Void> |
PgxSession.setSnapshotAsync(PgxGraph graph,
GraphMetaData metaData,
boolean forceDeleteTransientProperties)
Sets a graph to a specific snapshot.
|
Constructor and Description |
---|
GraphMetaData(GraphMetaData other) |
GraphMetaData(GraphMetaData other,
java.net.URI baseUri)
Deprecated.
|
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.