Class TimeLimitingCollector
The Time
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public class TimeLimitingCollector : ICollector
Constructors
| Improve this Doc View SourceTimeLimitingCollector(ICollector, Counter, Int64)
Create a Time
Declaration
public TimeLimitingCollector(ICollector collector, Counter clock, long ticksAllowed)
Parameters
Type | Name | Description |
---|---|---|
ICollector | collector | The wrapped ICollector |
Counter | clock | The timer clock |
System. |
ticksAllowed | Max time allowed for collecting
hits after which Time |
Properties
| Improve this Doc View SourceAcceptsDocsOutOfOrder
Declaration
public virtual bool AcceptsDocsOutOfOrder { get; }
Property Value
Type | Description |
---|---|
System. |
GlobalCounter
Returns the global Time
Invoking this creates may create a new instance of Time
Declaration
public static Counter GlobalCounter { get; }
Property Value
| Improve this Doc View SourceGlobalTimerThread
Returns the global Time
Invoking this creates may create a new instance of Time
Declaration
public static TimeLimitingCollector.TimerThread GlobalTimerThread { get; }
Property Value
Type | Description |
---|---|
Time |
the global Time |
IsGreedy
Checks if this time limited collector is greedy in collecting the last hit.
A non greedy collector, upon a timeout, would throw a Time
Declaration
public virtual bool IsGreedy { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceCollect(Int32)
Calls Collect(Int32) on the decorated ICollector unless the allowed time has passed, in which case it throws an exception.
Declaration
public virtual void Collect(int doc)
Parameters
Type | Name | Description |
---|---|---|
System. |
doc |
Exceptions
Type | Condition |
---|---|
Time |
If the time allowed has exceeded. |
SetBaseline()
Syntactic sugar for Set
Declaration
public virtual void SetBaseline()
SetBaseline(Int64)
Sets the baseline for this collector. By default the collectors baseline is initialized once the first reader is passed to the collector. To include operations executed in prior to the actual document collection set the baseline through this method in your prelude.
Example usage:
// Counter is in the Lucene.Net.Util namespace
Counter clock = Counter.NewCounter(true);
long baseline = clock.Get();
// ... prepare search
TimeLimitingCollector collector = new TimeLimitingCollector(c, clock, numTicks);
collector.SetBaseline(baseline);
indexSearcher.Search(query, collector);
Declaration
public virtual void SetBaseline(long clockTime)
Parameters
Type | Name | Description |
---|---|---|
System. |
clockTime |
See Also
| Improve this Doc View SourceSetCollector(ICollector)
This is so the same timer can be used with a multi-phase search process such as grouping.
We don't want to create a new Time
Declaration
public virtual void SetCollector(ICollector collector)
Parameters
Type | Name | Description |
---|---|---|
ICollector | collector | The actual collector performing search functionality. |
SetNextReader(AtomicReaderContext)
Declaration
public virtual void SetNextReader(AtomicReaderContext context)
Parameters
Type | Name | Description |
---|---|---|
Atomic |
context |
SetScorer(Scorer)
Declaration
public virtual void SetScorer(Scorer scorer)
Parameters
Type | Name | Description |
---|---|---|
Scorer | scorer |