Class BufferedInputIterator
This wrapper buffers incoming elements.
This is a Lucene.NET EXPERIMENTAL API, use at your own risk
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: Lucene.Net.Search.Suggest
Assembly: Lucene.Net.Suggest.dll
Syntax
public class BufferedInputIterator : IInputIterator, IBytesRefIterator
  Constructors
| Improve this Doc View SourceBufferedInputIterator(IInputIterator)
Creates a new iterator, buffering entries from the specified iterator
Declaration
public BufferedInputIterator(IInputIterator source)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IInputIterator | source | 
Fields
| Improve this Doc View Sourcem_contextSets
buffered context set entries
Declaration
protected IList<IEnumerable<BytesRef>> m_contextSets
  Field Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IList<System.Collections.Generic.IEnumerable<BytesRef>> | 
m_curPos
current buffer position
Declaration
protected int m_curPos
  Field Value
| Type | Description | 
|---|---|
| System.Int32 | 
m_entries
buffered term entries
Declaration
protected BytesRefArray m_entries
  Field Value
| Type | Description | 
|---|---|
| BytesRefArray | 
m_freqs
buffered weights, parallel with m_entries
Declaration
protected long[] m_freqs
  Field Value
| Type | Description | 
|---|---|
| System.Int64[] | 
m_payloads
buffered payload entries
Declaration
protected BytesRefArray m_payloads
  Field Value
| Type | Description | 
|---|---|
| BytesRefArray | 
Properties
| Improve this Doc View SourceComparer
Declaration
public virtual IComparer<BytesRef> Comparer { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IComparer<BytesRef> | 
Contexts
Declaration
public virtual IEnumerable<BytesRef> Contexts { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<BytesRef> | 
HasContexts
Declaration
public virtual bool HasContexts { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
HasPayloads
Declaration
public virtual bool HasPayloads { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Payload
Declaration
public virtual BytesRef Payload { get; }
  Property Value
| Type | Description | 
|---|---|
| BytesRef | 
Weight
Declaration
public virtual long Weight { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
Methods
| Improve this Doc View SourceNext()
Declaration
public virtual BytesRef Next()
  Returns
| Type | Description | 
|---|---|
| BytesRef |