2020-12-22 00:26:36 +00:00
|
|
|
package audittask
|
|
|
|
|
|
|
|
import (
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/services/audit"
|
2020-12-22 00:26:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// PushTask adds a task to the queue for processing.
|
|
|
|
//
|
|
|
|
// Returns error if task was not added to the queue.
|
|
|
|
func (m *Manager) PushTask(t *audit.Task) error {
|
|
|
|
m.ch <- t
|
|
|
|
return nil
|
|
|
|
}
|