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