public class AGRepository extends RepositoryBase implements AGAbstractRepository
AGCatalog contains multiple repositories.
With the Sesame API, most data operations on a repository are done through
the AGRepositoryConnection returned by getConnection().| Constructor and Description |
|---|
AGRepository(AGCatalog catalog,
String repositoryID)
Creates an AGRepository instance for a repository having the given
repository id in the given catalog.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Calls Sesame method
RepositoryBase.shutDown(). |
void |
ensureDBIdle()
Waits until background db processes have gone idle.
|
void |
forceCheckpoint()
Forces a checkpoint for this repository.
|
AGCatalog |
getCatalog()
Gets the catalog to which this repository belongs.
|
String |
getCatalogPrefixedRepositoryID() |
AGRepositoryConnection |
getConnection()
Create a connection to the repository.
|
AGRepositoryConnection |
getConnection(ScheduledExecutorService executor)
Create a connection to the repository.
|
File |
getDataDir()
Deprecated.
not applicable to AllegroGraph
|
String |
getDuplicateSuppressionPolicy()
Returns the repository's duplicate suppression policy.
|
AGHTTPClient |
getHTTPClient()
The http connection to AllegroGraph server.
|
String |
getRepositoryID()
Gets the repository id for this repository.
|
String |
getRepositoryURL()
The AllegroGraph URL of this repository.
|
String |
getSpec() |
AGValueFactory |
getValueFactory() |
boolean |
isBulkMode()
Returns the repository's bulkMode setting.
|
boolean |
isWritable()
Returns true iff this repository is writable.
|
void |
setBulkMode(boolean bulkMode)
Sets the repository's bulkMode (defaults to false).
|
void |
setConnPool(AGConnPool pool)
Sets the connection pool to use with this repository.
|
void |
setDataDir(File dataDir)
Deprecated.
not applicable to AllegroGraph
|
void |
setDuplicateSuppressionPolicy(String policy)
Sets the repository's duplicate suppression policy.
|
initialize, isInitialized, shutDownequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitinitialize, isInitialized, shutDownpublic AGRepository(AGCatalog catalog, String repositoryID)
Preferred access is from AGCatalog methods
such as AGCatalog.createRepository(String, boolean)
or AGCatalog.openRepository(String).
public AGCatalog getCatalog()
getCatalog in interface AGAbstractRepositorypublic String getRepositoryID()
public String getCatalogPrefixedRepositoryID()
public String getRepositoryURL()
public AGValueFactory getValueFactory()
getValueFactory in interface AGAbstractRepositorygetValueFactory in interface Repositorypublic AGHTTPClient getHTTPClient()
public AGRepositoryConnection getConnection(ScheduledExecutorService executor) throws RepositoryException
getConnection in interface AGAbstractRepositoryexecutor - Executor service used to schedule maintenance tasks,
such as calling ping() periodically.
Set to null to disable such tasks.
Call getConnection() to use the default executor
specified by the server object.
This argument is ignored if connection pooling is used.RepositoryExceptionpublic AGRepositoryConnection getConnection() throws RepositoryException
getConnection in interface AGAbstractRepositorygetConnection in interface RepositoryRepositoryExceptionpublic boolean isWritable()
throws RepositoryException
isWritable in interface RepositoryRepositoryExceptionpublic String getSpec()
getSpec in interface AGAbstractRepositorypublic File getDataDir()
getDataDir in interface Repositorypublic void setDataDir(File dataDir)
setDataDir in interface Repositorypublic void close()
throws RepositoryException
RepositoryBase.shutDown().close in interface CloseableRepositoryExceptionCloseable.close()public void setBulkMode(boolean bulkMode)
throws RepositoryException
RepositoryExceptionisBulkMode()public boolean isBulkMode()
throws RepositoryException
RepositoryExceptionsetBulkMode(boolean)public void setDuplicateSuppressionPolicy(String policy) throws RepositoryException
AGRepositoryConnection.deleteDuplicates(String).
See also the protocol documentation for
suppressing duplicates.policy - name of the suppression policy to useRepositoryExceptiongetDuplicateSuppressionPolicy()public String getDuplicateSuppressionPolicy() throws RepositoryException
RepositoryExceptionsetDuplicateSuppressionPolicy(String)public void setConnPool(AGConnPool pool)
Enables the repository to use a connection pool so that Sesame apps can transparently benefit from connection pooling. If pool is not null, getConnection() borrows a connection from the pool, and closing the connection returns it to the pool. The pool is closed when the Repository is shutdown.
Note that the AGConnPool parameters:
AGConnProp.serverUrl, "http://localhost:10035",
AGConnProp.username, "test",
AGConnProp.password, "xyzzy",
AGConnProp.catalog, "/",
AGConnProp.repository, "my_repo",
are currently assumed to match those of this repository.
AGConnPoolpublic void forceCheckpoint()
throws RepositoryException
RepositoryExceptionpublic void ensureDBIdle()
throws RepositoryException
RepositoryExceptionCopyright © 2017 Franz Inc.. All rights reserved.