Uses of Interface
org.modeshape.graph.connector.base.Transaction

Packages that use Transaction
org.modeshape.connector.disk The classes that make up the connector that stores content in a ModeShape-specific format on fixed disk. 
org.modeshape.connector.filesystem The classes that make up the connector that accesses the files and directories on a local file system and exposes them as content in a repository. 
org.modeshape.connector.infinispan The classes that make up the connector that stores content in a deployed instance of Infinispan. 
org.modeshape.connector.jbosscache The classes that make up the connector that stores content in a JBoss Cache instance. 
org.modeshape.connector.meta.jdbc The classes that make up the connector that accesses the database schema metadata exposed by JDBC drivers for existing relational databases. 
org.modeshape.graph.connector.base This package defines a series of classes that can serve as base classes for a connector implementation. 
org.modeshape.graph.connector.inmemory The In-Memory Connector represents a connector that maintains a graph in transient in-process memory. 
 

Uses of Transaction in org.modeshape.connector.disk
 

Classes in org.modeshape.connector.disk that implement Transaction
 class DiskTransaction
           
 

Methods in org.modeshape.connector.disk with parameters of type Transaction
 DiskWorkspace DiskRepository.createWorkspace(Transaction<DiskNode,DiskWorkspace> txn, String name, CreateWorkspaceRequest.CreateConflictBehavior existingWorkspaceBehavior, String nameOfWorkspaceToClone)
           
 

Uses of Transaction in org.modeshape.connector.filesystem
 

Methods in org.modeshape.connector.filesystem with parameters of type Transaction
 RequestProcessor FileSystemRepository.createRequestProcessor(Transaction<PathNode,org.modeshape.connector.filesystem.FileSystemWorkspace> txn)
           
 

Uses of Transaction in org.modeshape.connector.infinispan
 

Classes in org.modeshape.connector.infinispan that implement Transaction
 class InfinispanTransaction
           
 

Uses of Transaction in org.modeshape.connector.jbosscache
 

Classes in org.modeshape.connector.jbosscache that implement Transaction
 class JBossCacheTransaction
           
 

Uses of Transaction in org.modeshape.connector.meta.jdbc
 

Classes in org.modeshape.connector.meta.jdbc that implement Transaction
protected  class JdbcMetadataRepository.JdbcMetadataTransaction
           
 

Uses of Transaction in org.modeshape.graph.connector.base
 

Classes in org.modeshape.graph.connector.base that implement Transaction
 class BaseTransaction<NodeType extends Node,WorkspaceType extends Workspace>
           
 class MapTransaction<NodeType extends MapNode,WorkspaceType extends MapWorkspace<NodeType>>
          An implementation of Transaction that maintains a cache of nodes by their hash (or UUID).
 class PathTransaction<NodeType extends PathNode,WorkspaceType extends PathWorkspace<NodeType>>
          An implementation of Transaction that maintains a cache of nodes by their path.
 

Methods in org.modeshape.graph.connector.base that return Transaction
abstract  Transaction<NodeType,WorkspaceType> Repository.startTransaction(ExecutionContext context, boolean readonly)
          Begin a transaction, hinting whether the transaction will be used only to read the content.
 

Methods in org.modeshape.graph.connector.base with parameters of type Transaction
 RequestProcessor Repository.createRequestProcessor(Transaction<NodeType,WorkspaceType> txn)
          Create a RequestProcessor instance that should be used to process a set of requests within the supplied transaction.
 WorkspaceType Repository.createWorkspace(Transaction<NodeType,WorkspaceType> txn, String name, CreateWorkspaceRequest.CreateConflictBehavior existingWorkspaceBehavior, String nameOfWorkspaceToClone)
          Attempts to create a workspace with the given name with name-collision behavior determined by the behavior parameter.
 WorkspaceType Repository.getWorkspace(Transaction<NodeType,WorkspaceType> txn, String name)
          Returns the workspace with the given name.
 

Constructors in org.modeshape.graph.connector.base with parameters of type Transaction
Processor(Transaction<NodeType,WorkspaceType> txn, Repository<NodeType,WorkspaceType> repository, Observer observer, boolean updatesAllowed, boolean creatingWorkspacesAllowed)
           
 

Uses of Transaction in org.modeshape.graph.connector.inmemory
 

Classes in org.modeshape.graph.connector.inmemory that implement Transaction
 class InMemoryTransaction
           
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.