Class TinkerTransactionGraph.TinkerGraphGraphFeatures
java.lang.Object
org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerTransactionGraph.TinkerGraphGraphFeatures
- All Implemented Interfaces:
Graph.Features.FeatureSet,Graph.Features.GraphFeatures
- Enclosing class:
- TinkerTransactionGraph
public class TinkerTransactionGraph.TinkerGraphGraphFeatures
extends Object
implements Graph.Features.GraphFeatures
-
Field Summary
Fields inherited from interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
FEATURE_COMPUTER, FEATURE_CONCURRENT_ACCESS, FEATURE_IO_READ, FEATURE_IO_WRITE, FEATURE_ORDERABILITY_SEMANTICS, FEATURE_PERSISTENCE, FEATURE_SERVICE_CALL, FEATURE_THREADED_TRANSACTIONS, FEATURE_TRANSACTIONS -
Method Summary
Modifier and TypeMethodDescriptionbooleanDetermines if theGraphimplementation supports more than one connection to the same instance at the same time.booleanDetermines if theGraphimplementation supports the service call feature.booleanDetermines if theGraphimplementation supports threaded transactions which allow a transaction to be executed across multiple threads viaTransaction.createThreadedTx().booleanDetermines if theGraphimplementations supports transactions.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
supportsComputer, supportsIoRead, supportsIoWrite, supportsOrderabilitySemantics, supportsPersistence, variables
-
Method Details
-
supportsConcurrentAccess
public boolean supportsConcurrentAccess()Description copied from interface:Graph.Features.GraphFeaturesDetermines if theGraphimplementation supports more than one connection to the same instance at the same time.- Specified by:
supportsConcurrentAccessin interfaceGraph.Features.GraphFeatures
-
supportsThreadedTransactions
public boolean supportsThreadedTransactions()Description copied from interface:Graph.Features.GraphFeaturesDetermines if theGraphimplementation supports threaded transactions which allow a transaction to be executed across multiple threads viaTransaction.createThreadedTx().- Specified by:
supportsThreadedTransactionsin interfaceGraph.Features.GraphFeatures
-
supportsTransactions
public boolean supportsTransactions()Description copied from interface:Graph.Features.GraphFeaturesDetermines if theGraphimplementations supports transactions.- Specified by:
supportsTransactionsin interfaceGraph.Features.GraphFeatures
-
supportsServiceCall
public boolean supportsServiceCall()Description copied from interface:Graph.Features.GraphFeaturesDetermines if theGraphimplementation supports the service call feature.- Specified by:
supportsServiceCallin interfaceGraph.Features.GraphFeatures
-