Class AssertingCollector
Wraps another Lucene.Net.Search.ICollector and checks that AcceptsDocsOutOfOrder is respected.
Inheritance
System.Object
    AssertingCollector
  Implements
Lucene.Net.Search.ICollector
  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
Assembly: Lucene.Net.TestFramework.dll
Syntax
public class AssertingCollector : ICollector
  Properties
| Improve this Doc View SourceAcceptsDocsOutOfOrder
Declaration
public virtual bool AcceptsDocsOutOfOrder { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Methods
| Improve this Doc View SourceCollect(Int32)
Declaration
public virtual void Collect(int doc)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | doc | 
SetNextReader(AtomicReaderContext)
Declaration
public virtual void SetNextReader(AtomicReaderContext context)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Lucene.Net.Index.AtomicReaderContext | context | 
SetScorer(Scorer)
Declaration
public virtual void SetScorer(Scorer scorer)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Lucene.Net.Search.Scorer | scorer | 
Wrap(Random, ICollector, Boolean)
Declaration
public static ICollector Wrap(Random random, ICollector other, bool inOrder)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Random | random | |
| Lucene.Net.Search.ICollector | other | |
| System.Boolean | inOrder | 
Returns
| Type | Description | 
|---|---|
| Lucene.Net.Search.ICollector | 
Implements
      Lucene.Net.Search.ICollector