Class ThreadSafeTripleStore
A thread safe variant of TripleStore, simply a TripleStore instance with a ThreadSafeGraphCollection decorator around it's underlying BaseGraphCollection.
Implements
System.IDisposable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public class ThreadSafeTripleStore : TripleStore, IInMemoryQueryableStore, ISparqlUpdateTripleStore, IUpdateableTripleStore, ITripleStore, IDisposable
Constructors
| Improve this Doc View SourceThreadSafeTripleStore()
Creates a new Thread Safe triple store.
Declaration
public ThreadSafeTripleStore()
ThreadSafeTripleStore(BaseGraphCollection)
Creates a new Thread safe triple store using a thread safe decorator around the given graph collection.
Declaration
public ThreadSafeTripleStore(BaseGraphCollection collection)
Parameters
Type | Name | Description |
---|---|---|
BaseGraphCollection | collection | Collection. |
ThreadSafeTripleStore(ThreadSafeGraphCollection)
Creates a new Thread safe triple store using the given Thread safe graph collection.
Declaration
public ThreadSafeTripleStore(ThreadSafeGraphCollection collection)
Parameters
Type | Name | Description |
---|---|---|
ThreadSafeGraphCollection | collection | Collection. |
Implements
System.IDisposable