Show / Hide Table of Contents

Class BaseFullTextIndexer

Abstract Base Class for Full Text Indexers which implements the basic logic leaving derived classes to implement the index specific logic.
Inheritance
System.Object
BaseFullTextIndexer
BaseSimpleFullTextIndexer
Implements
IFullTextIndexer
IDisposable
Namespace: VDS.RDF.Query.FullText.Indexing
Assembly: dotNetRDF.Query.FullText.dll
Syntax
public abstract class BaseFullTextIndexer : object, IFullTextIndexer

Properties

| Improve this Doc View Source

IndexingMode

Gets the Indexing Mode used by this Indexer.
Declaration
public abstract IndexingMode IndexingMode { get; }
Property Value
Type Description
IndexingMode

Methods

| Improve this Doc View Source

Dispose()

Disposes of the Indexer.
Declaration
public void Dispose()
| Improve this Doc View Source

DisposeInternal()

Virtual method that can be overridden to add implementation specific dispose logic.
Declaration
protected virtual void DisposeInternal()
| Improve this Doc View Source

Finalize()

Destructor for the Indexer which ensures it is disposed of
Declaration
protected void Finalize()
| Improve this Doc View Source

Flush()

Ensures any pending changes are flushed to the actual index.
Declaration
public virtual void Flush()
| Improve this Doc View Source

Index(String, Triple)

Indexes a Triple associating it with the given Graph.
Declaration
protected abstract void Index(String graphUri, Triple t)
Parameters
Type Name Description
String graphUri Graph URI.
Triple t Triple.
| Improve this Doc View Source

Index(IGraph)

Indexes a Graph.
Declaration
public virtual void Index(IGraph g)
Parameters
Type Name Description
IGraph g Graph.
| Improve this Doc View Source

Index(ISparqlDataset)

Indexes a Dataset.
Declaration
public virtual void Index(ISparqlDataset dataset)
Parameters
Type Name Description
ISparqlDataset dataset Dataset.
| Improve this Doc View Source

Index(Triple)

Indexes a Triple.
Declaration
public virtual void Index(Triple t)
Parameters
Type Name Description
Triple t Triple.
| Improve this Doc View Source

Unindex(String, Triple)

Unindexes a Triple associating it with the given Graph.
Declaration
protected abstract void Unindex(String graphUri, Triple t)
Parameters
Type Name Description
String graphUri Graph URI.
Triple t Triple.
| Improve this Doc View Source

Unindex(IGraph)

Unindexes a Graph.
Declaration
public virtual void Unindex(IGraph g)
Parameters
Type Name Description
IGraph g Graph.
| Improve this Doc View Source

Unindex(ISparqlDataset)

Unindexes a Dataset.
Declaration
public virtual void Unindex(ISparqlDataset dataset)
Parameters
Type Name Description
ISparqlDataset dataset Dataset.
| Improve this Doc View Source

Unindex(Triple)

Unindexes a Triple.
Declaration
public virtual void Unindex(Triple t)
Parameters
Type Name Description
Triple t Triple.

Implements

IFullTextIndexer
IDisposable

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • IndexingMode
  • Methods
    • Dispose()
    • DisposeInternal()
    • Finalize()
    • Flush()
    • Index(String, Triple)
    • Index(IGraph)
    • Index(ISparqlDataset)
    • Index(Triple)
    • Unindex(String, Triple)
    • Unindex(IGraph)
    • Unindex(ISparqlDataset)
    • Unindex(Triple)
  • Implements
  • Extension Methods
Back to top Generated by DocFX