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