frostfs-node/pkg/innerring/processors/alphabet/handlers.go
Pavel Karpy ba77bb44e4 [#807] ir: Merge ContractProcessor and NotaryContractProcessor interfaces
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
2021-09-09 18:37:45 +03:00

21 lines
582 B
Go

package alphabet
import (
"github.com/nspcc-dev/neofs-node/pkg/innerring/timers"
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
"go.uber.org/zap"
)
func (ap *Processor) HandleGasEmission(ev event.Event) {
_ = ev.(timers.NewAlphabetEmitTick)
ap.log.Info("tick", zap.String("type", "alphabet gas emit"))
// send event to the worker pool
err := ap.pool.Submit(func() { ap.processEmit() })
if err != nil {
// there system can be moved into controlled degradation stage
ap.log.Warn("alphabet processor worker pool drained",
zap.Int("capacity", ap.pool.Cap()))
}
}