Class ThreadedStoreWriterContext
Writer Context for Store Writers which do multi-threaded writing.
Implements
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.Writing.Contexts
Assembly: dotNetRDF.dll
Syntax
public class ThreadedStoreWriterContext : BaseStoreWriterContext, IStoreWriterContext
Remarks
Provides a queue for queuing the URIs of Graphs from the Store that need writing and a thread safe way of retrieving the next Uri to be written from the Queue.
Constructors
| Improve this Doc View SourceThreadedStoreWriterContext(ITripleStore, TextWriter)
Creates a new Threaded Store Writer Context with default settings.
Declaration
public ThreadedStoreWriterContext(ITripleStore store, TextWriter output)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to be written. |
System.IO.TextWriter | output | TextWriter to write to. |
ThreadedStoreWriterContext(ITripleStore, TextWriter, Boolean, Boolean)
Creates a new Threaded Store Writer Context with custom settings.
Declaration
public ThreadedStoreWriterContext(ITripleStore store, TextWriter output, bool prettyPrint, bool hiSpeedAllowed)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to be written. |
System.IO.TextWriter | output | TextWriter to write to. |
System.Boolean | prettyPrint | Pretty Print Mode. |
System.Boolean | hiSpeedAllowed | High Speed Mode. |
Properties
| Improve this Doc View SourceNamespaceMap
Gets the NamespaceMap used for reducing URIs to QNames since there may only be one shared map written to the output.
Declaration
public NamespaceMapper NamespaceMap { get; }
Property Value
Type | Description |
---|---|
NamespaceMapper |
QNameMapper
Gets the QName Mapper.
Declaration
public ThreadSafeQNameOutputMapper QNameMapper { get; set; }
Property Value
Type | Description |
---|---|
ThreadSafeQNameOutputMapper |
Remarks
Must be manually initialised by the user.
Methods
| Improve this Doc View SourceAdd(Uri)
Adds a Uri to the list of URIs for Graphs that are waiting to be written.
Declaration
public void Add(Uri u)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | u |
TryGetNextUri(out Uri)
Gets the next Uri for a Graph that is waiting to be written.
Declaration
public bool TryGetNextUri(out Uri uri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | uri |
Returns
Type | Description |
---|---|
System.Boolean | Uri of next Graph to be written. |