mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
759 B
39 lines
759 B
2 years ago
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package queue
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type baseDummy struct{}
|
||
|
|
||
|
var _ baseQueue = (*baseDummy)(nil)
|
||
|
|
||
|
func newBaseDummy(cfg *BaseConfig, unique bool) (baseQueue, error) {
|
||
|
return &baseDummy{}, nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) PushItem(ctx context.Context, data []byte) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) PopItem(ctx context.Context) ([]byte, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) Len(ctx context.Context) (int, error) {
|
||
|
return 0, nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) HasItem(ctx context.Context, data []byte) (bool, error) {
|
||
|
return false, nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) Close() error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (q *baseDummy) RemoveAll(ctx context.Context) error {
|
||
|
return nil
|
||
|
}
|