mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
16 lines
290 B
Go
16 lines
290 B
Go
|
// Code generated by "callbackgen -type A3"; DO NOT EDIT.
|
||
|
|
||
|
package fmaker
|
||
|
|
||
|
import ()
|
||
|
|
||
|
func (inc *A3) OnUpdate(cb func(val float64)) {
|
||
|
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
|
||
|
}
|
||
|
|
||
|
func (inc *A3) EmitUpdate(val float64) {
|
||
|
for _, cb := range inc.UpdateCallbacks {
|
||
|
cb(val)
|
||
|
}
|
||
|
}
|