1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/eventbus/modules/some_module/some_module.v
2019-12-18 08:16:33 +03:00

34 lines
445 B
V

module some_module
import (
eventbus
)
const (
eb = eventbus.new()
)
pub struct Work {
pub:
hours int
}
pub fn do_work(){
work := Work{20}
mut params := eventbus.Params{}
for i in 0..20 {
println("working...")
if i == 15 {
params.put_string("error", "CRASH!!")
eb.publish("error", work, params)
eb.publish("error", work, params)
return
}
}
}
pub fn get_subscriber() eventbus.Subscriber {
return eb.subscriber
}