Uses of Class
oracle.pgx.api.GraphMetaData
-
Packages that use GraphMetaData Package Description oracle.pgx.api This package contains the main Java APIs. -
-
Uses of GraphMetaData in oracle.pgx.api
Methods in oracle.pgx.api that return GraphMetaData Modifier and Type Method Description GraphMetaData
PgxGraph. getMetaData()
Provides the metadata associated to this graph snapshot which includes information about the structure of the graph, versioning information, etc.Methods in oracle.pgx.api that return types with arguments of type GraphMetaData Modifier and Type Method Description java.util.Deque<GraphMetaData>
PgxSession. getAvailableSnapshots(PgxGraph snapshot)
Blocking version ofPgxSession.getAvailableSnapshotsAsync(PgxGraph)
.PgxFuture<java.util.Deque<GraphMetaData>>
PgxSession. getAvailableSnapshotsAsync(PgxGraph graph)
Gets a list of theGraphMetaData
information of available in-memory snapshots ofgraph
.Methods in oracle.pgx.api with parameters of type GraphMetaData Modifier and Type Method Description PgxGraph
PgxSession. readGraphAsOf(GraphConfig config, GraphMetaData metaData)
Blocking version ofPgxSession.readGraphAsOfAsync(GraphConfig, GraphMetaData)
.PgxGraph
PgxSession. readGraphAsOf(GraphConfig config, GraphMetaData metaData, java.lang.String newGraphName)
Blocking version ofPgxSession.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 ofPgxSession.setSnapshotAsync(PgxGraph, GraphMetaData)
.void
PgxSession. setSnapshot(PgxGraph graph, GraphMetaData metaData, boolean forceDeleteProperties)
Blocking version ofPgxSession.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.Constructors in oracle.pgx.api with parameters of type GraphMetaData Constructor Description GraphMetaData(GraphMetaData other)
-