| Package | Description |
|---|---|
| oracle.pg.common |
This package contains the common logic that is shared by all the backend databases including
Oracle Database, Oracle NoSQL Database, and Apache HBase.
|
| oracle.pg.rdbms |
This package contains the APIs specific to the property graph support on Oracle Database.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataConverterListener
This interface defines a few core APIs to that can be used to report progress of a data conversion
process.
|
interface |
DataLoaderListener
This interface defines a few core APIs to that can be used to report progress of a data loading
process.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleLogBasedDataLoaderListenerImpl
This class provides a simple Log based implementation of DataLoaderListener interface.
|
class |
SimpleLogBasedProgressListenerImpl
This class provides a simple Log based implementation of ProgressListener interface.
|
| Modifier and Type | Field and Description |
|---|---|
static ProgressListener |
OracleGraphAttributeUpdater.m_pl |
| Modifier and Type | Method and Description |
|---|---|
ProgressListener |
OracleGraphAttributeUpdater.getProgressListener()
Gets the ProgressListener associated to this property graph.
|
ProgressListener |
OracleMetadataGraph.getProgressListener()
Gets the ProgressListener associated to this property graph.
|
ProgressListener |
OraclePropertyGraphBase.getProgressListener()
Gets the ProgressListener associated to this property graph.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
OracleGraphAttributeUpdater.addAttributeToAllEdges(EdgeOpCallback eoc,
boolean skipStoreToCache,
int dop,
ProgressListener pl)
Adds an attribute to all edges satisfying the criterias specified in
the given
EdgeOpCallback. |
default void |
OracleGraphAttributeUpdater.addAttributeToAllVertices(VertexOpCallback voc,
boolean skipStoreToCache,
int dop,
ProgressListener pl)
Adds an attribute to all vertices based on the specified
VertexOpCallback. |
long |
OracleMetadataGraph.countEdges(int dop,
ProgressListener pll)
Counts all edges using parallel scans and the specified DOP.
|
long |
OracleMetadataGraph.countVertices(int dop,
ProgressListener pll)
Counts all vertices using parallel scan with dop threads
|
int |
OracleMetadataGraph.getEdgePropertyNames(int dop,
int timeout,
java.util.Map<java.lang.String,java.lang.Class> propertyNames,
ProgressListener pl)
Gets the property names of all edges using parallel scans and the specified DOP.
|
int |
OracleMetadataGraph.getEdgePropertyNames(int dop,
int timeout,
java.util.Set<java.lang.String> propertyNames,
ProgressListener pl)
Gets the property names of all edges using parallel scans and the specified DOP.
|
java.util.Set<java.lang.Long> |
OracleMetadataGraph.getInvalidEdgeIDSet(int dop,
ProgressListener pl)
Gets a set of invalid edges that are stored in the property graph.
|
long |
OracleMetadataGraph.getMaxEdgeID(int dop,
ProgressListener pl)
Get the maximum edge ID using parallel scan and the specified DOP.
|
long |
OracleMetadataGraph.getMaxVertexID(int dop,
ProgressListener pl)
Get maximum vertex ID using parallel scans and the specified DOP.
|
long |
OracleMetadataGraph.getMinEdgeID(int dop,
ProgressListener pl)
Get the minimum edge ID using parallel scan with dop threads
|
long |
OracleMetadataGraph.getMinVertexID(int dop,
ProgressListener pl)
Get minimum vertex ID using parallel scans and the specified DOP.
|
java.util.Set<java.lang.Long> |
OracleMetadataGraph.getVertexIDSet(int dop,
ProgressListener pl)
Gets a set of Vertex IDs that are stored in the vertex table of the property graph using
parallel scan with dop threads
|
int |
OracleMetadataGraph.getVertexPropertyNames(int dop,
int timeout,
java.util.Map<java.lang.String,java.lang.Class> propertyNames,
ProgressListener pl)
Gets the property names of all vertices using parallel scans and the specified DOP.
|
int |
OracleMetadataGraph.getVertexPropertyNames(int dop,
int timeout,
java.util.Set<java.lang.String> propertyNames,
ProgressListener pl)
Gets the property names of all vertices using parallel scans and the specified DOP.
|
default void |
OracleGraphAttributeUpdater.removeAttributeFromAllEdges(EdgeOpCallback eoc,
boolean skipStoreToCache,
int dop,
ProgressListener pl)
Removes an attribute from all edges satisfying the criterias specified in
the given
EdgeOpCallback. |
default void |
OracleGraphAttributeUpdater.removeAttributeFromAllVertices(VertexOpCallback voc,
boolean skipStoreToCache,
int dop,
ProgressListener pl)
Removes an attribute from all vertices satisfying the criterias specified in
the given
VertexOpCallback. |
void |
OracleGraphAttributeUpdater.setProgressListener(ProgressListener pl)
Sets the ProgressListener associated to this property graph.
|
void |
OraclePropertyGraphBase.setProgressListener(ProgressListener pl)
Sets the ProgressListener associated to this property graph.
|
<T extends OracleElementBase> |
OracleGraphAttributeUpdater.updateGraph(OpCallback<T> oc,
boolean skipStoreToCache,
int dop,
ProgressListener pl,
OpCallback.UpdateType updateType)
Adds an attribute to all vertices based on the specified
OpCallback. |
| Constructor and Description |
|---|
OracleGraphUpdateWorker(java.util.Iterator<T> it,
int idx,
OpCallback<T> oc,
OpCallback.UpdateType updateType,
ProgressListener pl)
Constructor of OracleGraphUpdateWorker
|
| Modifier and Type | Method and Description |
|---|---|
long |
OraclePropertyGraph.countEdges(int dop,
ProgressListener pll)
Counts all edges using parallel scans and the specified DOP.
|
long |
OraclePropertyGraph.countVertices(int dop,
ProgressListener pll)
Counts all vertices using parallel scan with dop threads
|
int |
OraclePropertyGraph.getEdgePropertyNames(int dop,
int timeout,
java.util.Map<java.lang.String,java.lang.Class> propertyNames,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
int |
OraclePropertyGraph.getEdgePropertyNames(int dop,
int timeout,
java.util.Set<java.lang.String> propertyNames,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Set<java.lang.Long> |
OraclePropertyGraph.getInvalidEdgeIDSet(int dop,
ProgressListener pl)
Gets a set of invalid edges that are stored in the property graph.
|
long |
OraclePropertyGraph.getMaxEdgeID(int dop,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
long |
OraclePropertyGraph.getMaxVertexID(int dop,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
long |
OraclePropertyGraph.getMinEdgeID(int dop,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
long |
OraclePropertyGraph.getMinVertexID(int dop,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Set<java.lang.Long> |
OraclePropertyGraph.getVertexIDSet(int dop,
ProgressListener pl)
Gets a set of Vertex IDs that are stored in the property graph
|
int |
OraclePropertyGraph.getVertexPropertyNames(int dop,
int timeout,
java.util.Map<java.lang.String,java.lang.Class> propertyNames,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
int |
OraclePropertyGraph.getVertexPropertyNames(int dop,
int timeout,
java.util.Set<java.lang.String> propertyNames,
ProgressListener pl)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
<T extends OracleElementBase> |
OraclePropertyGraph.updateGraph(OpCallback<T> oc,
boolean skipStoreToCache,
int dop,
ProgressListener pl,
OpCallback.UpdateType updateType)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|