lucas
2 weeks ago
2 changed files with 5 additions and 5 deletions
@ -1,14 +1,14 @@ |
|||||
package monitors |
package monitors |
||||
|
|
||||
type CommonMonitorMonitor struct { |
type CommonMonitor struct { |
||||
*MonitorHelper |
*MonitorHelper |
||||
} |
} |
||||
|
|
||||
func (the *CommonMonitorMonitor) RegisterFun(fun func()) { |
func (the *CommonMonitor) RegisterFun(fun func()) { |
||||
the.registerFun(fun) |
the.registerFun(fun) |
||||
} |
} |
||||
|
|
||||
func (the *CommonMonitorMonitor) Start() { |
func (the *CommonMonitor) Start() { |
||||
the.initial() |
the.initial() |
||||
the.monitorStart() |
the.monitorStart() |
||||
} |
} |
||||
|
Loading…
Reference in new issue