Package | Description |
---|---|
oracle.pg.common |
This package contains the common logic that is shared by all the backend databases including Oracle NoSQL Database and Apache HBase.
|
oracle.pg.hbase |
This package contains the logic specific to the property graph support on Apache HBase.
|
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 | Method and Description |
---|---|
ProgressListener |
OraclePropertyGraphBase.getProgressListener()
Gets the ProgressListener associated to this property graph.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
OraclePropertyGraphBase.addAttributeToAllEdges(EdgeOpCallback eoc, boolean skipStoreToCache, int dop, ProgressListener pl)
Adds an attribute to all edges satisfying the criterias specified in the given
EdgeOpCallback . |
abstract void |
OraclePropertyGraphBase.addAttributeToAllVertices(VertexOpCallback voc, boolean skipStoreToCache, int dop, ProgressListener pl)
Adds an attribute to all vertices satisfying the criterias specified in the given
VertexOpCallback . |
abstract long |
OraclePropertyGraphBase.countEdges(int dop, ProgressListener pll)
Counts all edges using parallel scans and the specified DOP.
|
abstract long |
OraclePropertyGraphBase.countVertices(int dop, ProgressListener pll)
Counts all vertices using parallel scan with dop threads
|
abstract int |
OraclePropertyGraphBase.getEdgePropertyNames(int dop, int timeout, Set<String> propertyNames, ProgressListener pl)
Gets the property names of all edges using parallel scans and the specified DOP.
|
abstract Set<Long> |
OraclePropertyGraphBase.getInvalidEdgeIDSet(int dop, ProgressListener pl)
Gets a set of invalid edges that are stored in the property graph.
|
abstract long |
OraclePropertyGraphBase.getMaxEdgeID(int dop, ProgressListener pl)
Get the maximum edge ID using parallel scan and the specified DOP.
|
abstract long |
OraclePropertyGraphBase.getMaxVertexID(int dop, ProgressListener pl)
Get maximum vertex ID using parallel scans and the specified DOP.
|
abstract long |
OraclePropertyGraphBase.getMinEdgeID(int dop, ProgressListener pl)
Get the minimum edge ID using parallel scan with dop threads
|
abstract long |
OraclePropertyGraphBase.getMinVertexID(int dop, ProgressListener pl)
Get minimum vertex ID using parallel scans and the specified DOP.
|
abstract Set<Long> |
OraclePropertyGraphBase.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
|
abstract int |
OraclePropertyGraphBase.getVertexPropertyNames(int dop, int timeout, Set<String> propertyNames, ProgressListener pl)
Gets the property names of all vertices using parallel scans and the specified DOP.
|
abstract void |
OraclePropertyGraphBase.removeAttributeFromAllEdges(EdgeOpCallback eoc, boolean skipStoreToCache, int dop, ProgressListener pl)
Removes an attribute from all edges satisfying the criterias specified in the given
EdgeOpCallback . |
abstract void |
OraclePropertyGraphBase.removeAttributeFromAllVertices(VertexOpCallback voc, boolean skipStoreToCache, int dop, ProgressListener pl)
Removes an attribute from all vertices satisfying the criterias specified in the given
VertexOpCallback . |
void |
OraclePropertyGraphBase.setProgressListener(ProgressListener pl)
Sets the ProgressListener associated to this property graph.
|
Modifier and Type | Method and Description |
---|---|
void |
OraclePropertyGraph.addAttributeToAllEdges(EdgeOpCallback eoc, boolean skipStoreToCache, int dop, ProgressListener pl)
Adds an attribute to all edges based on the specified
EdgeOpCallback . |
void |
OraclePropertyGraph.addAttributeToAllVertices(VertexOpCallback voc, boolean skipStoreToCache, int dop, ProgressListener pl)
Adds an attribute to all vertices based on the specified
VertexOpCallback . |
long |
OraclePropertyGraph.countEdges(int dop, ProgressListener pl)
Counts all Edges using parallel scan and the specified DOP.
|
long |
OraclePropertyGraph.countVertices(int dop, ProgressListener pl)
Counts all vertices using parallel scans and the specified DOP.
|
int |
OraclePropertyGraph.getEdgePropertyNames(int dop, int timeout, Set<String> propertyNames, ProgressListener pl)
Gets the property names of all edges using parallel scans and the specified DOP.
|
Set<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)
Get the maximum edge ID using parallel scan and the specified DOP.
|
long |
OraclePropertyGraph.getMaxVertexID(int dop, ProgressListener pl)
Get maximum vertex ID using parallel scans and the specified DOP.
|
long |
OraclePropertyGraph.getMinEdgeID(int dop, ProgressListener pl)
Get the minimum edge ID using parallel scan with dop threads
|
long |
OraclePropertyGraph.getMinVertexID(int dop, ProgressListener pl)
Get minimum vertex ID using parallel scans and the specified DOP.
|
Set<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, Set<String> propertyNames, ProgressListener pl)
Gets the property names of all vertices using parallel scans and the specified DOP.
|
void |
OraclePropertyGraph.removeAttributeFromAllEdges(EdgeOpCallback eoc, boolean skipStoreToCache, int dop, ProgressListener pl)
Removes an attribute from all edges based on the specified
EdgeOpCallback . |
void |
OraclePropertyGraph.removeAttributeFromAllVertices(VertexOpCallback voc, boolean skipStoreToCache, int dop, ProgressListener pl)
Removes an attribute from all vertices based on the specified
VertexOpCallback . |
Copyright © 2017 Oracle and/or its affiliates. All Rights Reserved.