public MultiSearcherThread(Monodoc.Lucene.Net.Search.Searchable searchable, Query query, Filter filter, int nDocs, HitQueue hq, int i, int[] starts, System.String name) : base(name)
 {
     this.searchable = searchable;
     this.query      = query;
     this.filter     = filter;
     this.nDocs      = nDocs;
     this.hq         = hq;
     this.i          = i;
     this.starts     = starts;
 }
Example #2
0
		/// <summary>Constructs and exports a remote searcher. </summary>
		public RemoteSearchable(Monodoc.Lucene.Net.Search.Searchable local):base()
		{
			this.local = local;
		}
Example #3
0
		public MultiSearcherThread(Monodoc.Lucene.Net.Search.Searchable searchable, Query query, Filter filter, int nDocs, FieldDocSortedHitQueue hq, Sort sort, int i, int[] starts, System.String name):base(name)
		{
			this.searchable = searchable;
			this.query = query;
			this.filter = filter;
			this.nDocs = nDocs;
			this.hq = hq;
			this.i = i;
			this.starts = starts;
			this.sort = sort;
		}
Example #4
0
 /// <summary>Constructs and exports a remote searcher. </summary>
 public RemoteSearchable(Monodoc.Lucene.Net.Search.Searchable local) : base()
 {
     this.local = local;
 }