Class ThreadedStoreWriterContext
Writer Context for Store Writers which do multi-threaded writing.
Implements
Inherited Members
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
| Edit this page 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. |
TextWriter | output | TextWriter to write to. |
ThreadedStoreWriterContext(ITripleStore, TextWriter, bool, bool)
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. |
TextWriter | output | TextWriter to write to. |
bool | prettyPrint | Pretty Print Mode. |
bool | hiSpeedAllowed | High Speed Mode. |
Properties
| Edit this page 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 initialized by the user.
Methods
| Edit this page View SourceAdd(Uri)
Adds a Uri to the list of URIs for Graphs that are waiting to be written.
Declaration
[Obsolete("Replaced by Add(IRefNode)")]
public void Add(Uri u)
Parameters
Type | Name | Description |
---|---|---|
Uri | u |
Add(IRefNode)
Adds the name of a graph to the list of graphs that are waiting to be written.
Declaration
public void Add(IRefNode name)
Parameters
Type | Name | Description |
---|---|---|
IRefNode | name | The graph name. |
TryGetNextGraphName(out IRefNode)
Gets the next name for a graph that is waiting to be written.
Declaration
public bool TryGetNextGraphName(out IRefNode graphName)
Parameters
Type | Name | Description |
---|---|---|
IRefNode | graphName | Name of next graph to be written. |
Returns
Type | Description |
---|---|
bool |
TryGetNextUri(out Uri)
Gets the next Uri for a Graph that is waiting to be written.
Declaration
[Obsolete("Replaced by TryGetNextGraphName(out IRefNode)", true)]
public bool TryGetNextUri(out Uri uri)
Parameters
Type | Name | Description |
---|---|---|
Uri | uri |
Returns
Type | Description |
---|---|
bool | Uri of next Graph to be written. |