mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* add more tests and docs for issue indexer, add db indexer type for searching from database * fix typo * fix typo * fix lint * improve docs
		
			
				
	
	
		
			26 lines
		
	
	
		
			547 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			547 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package issues
 | 
						|
 | 
						|
// Queue defines an interface to save an issue indexer queue
 | 
						|
type Queue interface {
 | 
						|
	Run() error
 | 
						|
	Push(*IndexerData) error
 | 
						|
}
 | 
						|
 | 
						|
// DummyQueue represents an empty queue
 | 
						|
type DummyQueue struct {
 | 
						|
}
 | 
						|
 | 
						|
// Run starts to run the queue
 | 
						|
func (b *DummyQueue) Run() error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// Push pushes data to indexer
 | 
						|
func (b *DummyQueue) Push(*IndexerData) error {
 | 
						|
	return nil
 | 
						|
}
 |