Click or drag to resize

IEventQueueT Interface

Interface for implementing Event Queues which provide Bufferable wrappers to Event Generators.

Namespace:  VDS.RDF.Parsing.Events
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface IEventQueue<T>
where T : IEvent

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:VDS.RDF.Parsing.Events.IEventQueue`1"]

The IEventQueueT type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of Events in the Queue.
Public propertyEventGenerator
Gets the Event Generator that this Queue uses.
Public propertyLastEventType
Gets the Event Type of the last Event dequeued.
Public propertyTracing
Gets/Sets whether Generator Tracing should be used.
Top
Methods
  NameDescription
Public methodClear
Clears the Event Queue.
Public methodDequeue
Removes the first Event from the Queue.
Public methodEnqueue
Adds an Event to the end of the Queue.
Public methodPeek
Gets the first Event from the Queue without removing it.
Top
See Also