Uses of Interface
org.neo4j.graphdb.GraphDatabaseService

Packages that use GraphDatabaseService
org.neo4j.backup   
org.neo4j.com   
org.neo4j.cypher.javacompat Execute Cypher queries from Java code. 
org.neo4j.graphdb The graph database API used by Neo4j. 
org.neo4j.graphdb.index Integrated API for node and relationship indexing. 
org.neo4j.index.impl.lucene An indexing implementation using Apache Lucene as backend. 
org.neo4j.index.lucene Contains QueryContext and ValueContext which is part of the public API for an Index backed by Lucene. 
org.neo4j.kernel Implementation for embedding a Neo4j graph database in an application. 
org.neo4j.kernel.ha   
org.neo4j.kernel.ha.zookeeper   
org.neo4j.kernel.impl.batchinsert   
org.neo4j.kernel.impl.core   
org.neo4j.kernel.impl.transaction   
org.neo4j.tooling.wrap   
 

Uses of GraphDatabaseService in org.neo4j.backup
 

Methods in org.neo4j.backup with parameters of type GraphDatabaseService
 OnlineBackup OnlineBackup.incremental(GraphDatabaseService targetDb)
           
 

Uses of GraphDatabaseService in org.neo4j.com
 

Methods in org.neo4j.com with parameters of type GraphDatabaseService
static
<T> void
MasterUtil.applyReceivedTransactions(Response<T> response, GraphDatabaseService graphDb, MasterUtil.TxHandler txHandler)
           
static Response<Void> MasterUtil.getTransactions(GraphDatabaseService graphDb, String dataSourceName, long startTx, long endTx)
          Given a data source name, a start and an end tx, this method extracts these transactions (inclusive) in a transaction stream and encapsulates them in a Response object, ready to be returned to the slave.
static
<T> Response<T>
MasterUtil.packResponse(GraphDatabaseService graphDb, SlaveContext context, T response, Predicate<Long> filter)
          After having created the response for a slave, this method compares its context against the local (master's) context and creates a transaction stream containing all the transactions the slave does not currently have.
static
<T> Response<T>
MasterUtil.packResponseWithoutTransactionStream(GraphDatabaseService graphDb, SlaveContext context, T response)
           
static SlaveContext.Tx[] MasterUtil.rotateLogs(GraphDatabaseService graphDb)
           
static SlaveContext MasterUtil.rotateLogsAndStreamStoreFiles(GraphDatabaseService graphDb, boolean includeLogicalLogs, StoreWriter writer)
           
 

Constructors in org.neo4j.com with parameters of type GraphDatabaseService
Client(String hostNameOrIp, int port, GraphDatabaseService graphDb, int frameLength, byte applicationProtocolVersion, int readTimeout, int maxConcurrentChannels, int maxUnusedPoolSize)
           
Client(String hostNameOrIp, int port, GraphDatabaseService graphDb, int frameLength, byte applicationProtocolVersion, int readTimeout, int maxConcurrentChannels, int maxUnusedPoolSize, Client.ConnectionLostHandler connectionLostHandler)
           
 

Uses of GraphDatabaseService in org.neo4j.cypher.javacompat
 

Constructors in org.neo4j.cypher.javacompat with parameters of type GraphDatabaseService
ExecutionEngine(GraphDatabaseService database)
          Creates an execution engine around the give graph database
 

Uses of GraphDatabaseService in org.neo4j.graphdb
 

Methods in org.neo4j.graphdb that return GraphDatabaseService
 GraphDatabaseService PropertyContainer.getGraphDatabase()
          Get the GraphDatabaseService that this Node or Relationship belongs to.
 

Uses of GraphDatabaseService in org.neo4j.graphdb.index
 

Methods in org.neo4j.graphdb.index that return GraphDatabaseService
 GraphDatabaseService ReadableIndex.getGraphDatabase()
          Get the graph database that owns this index.
protected  GraphDatabaseService UniqueFactory.graphDatabase()
          Get the graph database of the referenced index.
 

Constructors in org.neo4j.graphdb.index with parameters of type GraphDatabaseService
UniqueFactory.UniqueNodeFactory(GraphDatabaseService graphdb, String index)
          Create a new UniqueFactory for nodes.
UniqueFactory.UniqueRelationshipFactory(GraphDatabaseService graphdb, String index)
          Create a new UniqueFactory for relationships.
 

Uses of GraphDatabaseService in org.neo4j.index.impl.lucene
 

Methods in org.neo4j.index.impl.lucene that return GraphDatabaseService
 GraphDatabaseService LuceneIndex.getGraphDatabase()
           
 

Constructors in org.neo4j.index.impl.lucene with parameters of type GraphDatabaseService
LuceneIndexImplementation(GraphDatabaseService db, Config config)
           
 

Uses of GraphDatabaseService in org.neo4j.index.lucene
 

Constructors in org.neo4j.index.lucene with parameters of type GraphDatabaseService
LuceneTimeline(GraphDatabaseService db, Index<T> index)
           
 

Uses of GraphDatabaseService in org.neo4j.kernel
 

Classes in org.neo4j.kernel that implement GraphDatabaseService
 class AbstractGraphDatabase
          Exposes the methods AbstractGraphDatabase.getConfig()() and AbstractGraphDatabase.getManagementBeans(Class)() a.s.o.
 class EmbeddedGraphDatabase
          An implementation of GraphDatabaseService that is used to embed Neo4j in an application.
 class EmbeddedReadOnlyGraphDatabase
          A read-only version of EmbeddedGraphDatabase.
 class HAGraphDb
           
 class HighlyAvailableGraphDatabase
           
 

Methods in org.neo4j.kernel that return GraphDatabaseService
abstract  GraphDatabaseService KernelData.graphDatabase()
           
 

Uses of GraphDatabaseService in org.neo4j.kernel.ha
 

Methods in org.neo4j.kernel.ha that return GraphDatabaseService
 GraphDatabaseService LockableRelationship.getGraphDatabase()
           
 GraphDatabaseService LockableNode.getGraphDatabase()
           
 GraphDatabaseService MasterImpl.getGraphDb()
           
 

Methods in org.neo4j.kernel.ha with parameters of type GraphDatabaseService
 Object Broker.instantiateMasterServer(GraphDatabaseService graphDb)
           
 

Constructors in org.neo4j.kernel.ha with parameters of type GraphDatabaseService
MasterImpl(GraphDatabaseService db, Map<String,String> config)
           
 

Uses of GraphDatabaseService in org.neo4j.kernel.ha.zookeeper
 

Methods in org.neo4j.kernel.ha.zookeeper with parameters of type GraphDatabaseService
 Object ZooKeeperBroker.instantiateMasterServer(GraphDatabaseService graphDb)
           
 

Uses of GraphDatabaseService in org.neo4j.kernel.impl.batchinsert
 

Methods in org.neo4j.kernel.impl.batchinsert that return GraphDatabaseService
 GraphDatabaseService BatchInserterImpl.getGraphDbService()
           
 GraphDatabaseService BatchInserter.getGraphDbService()
           
 

Uses of GraphDatabaseService in org.neo4j.kernel.impl.core
 

Methods in org.neo4j.kernel.impl.core that return GraphDatabaseService
 GraphDatabaseService NodeManager.getGraphDbService()
           
 

Constructors in org.neo4j.kernel.impl.core with parameters of type GraphDatabaseService
GraphDbModule(GraphDatabaseService graphDb, AdaptiveCacheManager cacheManager, LockManager lockManager, TransactionManager transactionManager, EntityIdGenerator idGenerator, boolean readOnly)
           
 

Uses of GraphDatabaseService in org.neo4j.kernel.impl.transaction
 

Constructors in org.neo4j.kernel.impl.transaction with parameters of type GraphDatabaseService
SpringTransactionManager(GraphDatabaseService neo4j)
           
UserTransactionImpl(GraphDatabaseService neo4j)
           
 

Uses of GraphDatabaseService in org.neo4j.tooling.wrap
 

Classes in org.neo4j.tooling.wrap that implement GraphDatabaseService
 class WrappedGraphDatabase
           
 

Fields in org.neo4j.tooling.wrap declared as GraphDatabaseService
protected  GraphDatabaseService WrappedGraphDatabase.graphdb
           
 

Methods in org.neo4j.tooling.wrap that return GraphDatabaseService
 GraphDatabaseService WrappedIndex.getGraphDatabase()
           
 

Constructors in org.neo4j.tooling.wrap with parameters of type GraphDatabaseService
WrappedGraphDatabase(GraphDatabaseService graphdb)
           
 



Copyright © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.