本站源代码
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

26 líneas
547B

  1. // Copyright 2018 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package issues
  5. // Queue defines an interface to save an issue indexer queue
  6. type Queue interface {
  7. Run() error
  8. Push(*IndexerData) error
  9. }
  10. // DummyQueue represents an empty queue
  11. type DummyQueue struct {
  12. }
  13. // Run starts to run the queue
  14. func (b *DummyQueue) Run() error {
  15. return nil
  16. }
  17. // Push pushes data to indexer
  18. func (b *DummyQueue) Push(*IndexerData) error {
  19. return nil
  20. }
上海开阖软件有限公司 沪ICP备12045867号-1