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