Click or drag to resize

ITokenQueue Interface

Interface for implementing Token Queues which provide Bufferable wrappers to Tokenisers.

Namespace:  VDS.RDF.Parsing.Tokens
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface ITokenQueue

The ITokenQueue type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of Tokens in the Queue.
Public propertyLastTokenType
Gets the Token Type of the last Token dequeued.
Public propertyTokeniser
Tokeniser that this is a Queue for.
Public propertyTokens
Gets the underlying Queue of Tokens.
Public propertyTracing
Gets/Sets whether Tokeniser Tracing should be used.
Top
Methods
  NameDescription
Public methodClear
Clears the Token Queue.
Public methodDequeue
Removes the first Token from the Queue.
Public methodEnqueue
Adds a Token to the end of the Queue.
Public methodInitialiseBuffer
Initialises the Buffer.
Public methodInitialiseBuffer(Int32)
Initialises the Buffer and sets the Buffering Level.
Public methodPeek
Gets the first Token from the Queue without removing it.
Top
See Also