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
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public class ThreadSafeTripleStore : TripleStore, IInMemoryQueryableStore, IInferencingTripleStore, 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 |
---|---|---|
Base |
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 |
---|---|---|
Thread |
collection | Collection. |
Implements
System.IDisposable