bbgo_origin/pkg/strategy/fmaker/a18_callbacks.go

16 lines
293 B
Go
Raw Normal View History

2022-05-29 13:27:58 +00:00
// Code generated by "callbackgen -type A18"; DO NOT EDIT.
package fmaker
import ()
func (inc *A18) OnUpdate(cb func(val float64)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *A18) EmitUpdate(val float64) {
for _, cb := range inc.UpdateCallbacks {
cb(val)
}
}