Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
oracle.pgx.config |
This package contains all configuration-related classes of PGX.
|
Modifier and Type | Method and Description |
---|---|
PgxGraph |
PgxSession.readGraphByName(java.lang.String name, GraphSource source, ReadGraphOption... options)
Blocking version of
PgxSession.readGraphByNameAsync(String, GraphSource, ReadGraphOption...) . |
PgxFuture<PgxGraph> |
PgxSession.readGraphByNameAsync(java.lang.String name, GraphSource source, ReadGraphOption... options)
Reads a graph identified by the given name into memory.
|
Modifier and Type | Class and Description |
---|---|
static class |
ReadGraphOption.OnMissingVertexOption
Class for encapsulating a OnMissingVertex config option
|
static class |
ReadGraphOption.OptimizedForOption
Class for encapsulating a GraphOptimizedFor config option
|
static class |
ReadGraphOption.ParallelHintDegreeReadGraphOption
Class for encapsulating the ParallelHintDegree config option
|
static class |
ReadGraphOption.SynchronizableOptionReadGraphOption
Class for option, which specifies if graph cannot be synchronized, PGX will throw an Exception
|
Modifier and Type | Method and Description |
---|---|
static <T extends ReadGraphOption> |
ReadGraphOption.validateUnique(java.util.Collection<ReadGraphOption> options, java.lang.Class<T> clazz, java.lang.String errorMessage)
Validates a given option list to contain only one item of the specified type.
|
Modifier and Type | Method and Description |
---|---|
static <T extends ReadGraphOption> |
ReadGraphOption.validateUnique(java.util.Collection<ReadGraphOption> options, java.lang.Class<T> clazz, java.lang.String errorMessage)
Validates a given option list to contain only one item of the specified type.
|