Skip to main content

V2.0.0-rc.76

· One min read
Co-creator of yunzaijs 1
ProjectStatusDescription
alemonjsalemonjs-s机器人模块
  • 新增useSubscribe
// [事件创建之后,事件被中间件处理之后,事件被处理完成之后,]
const [create, monut, unmonut] = useSubscribe(event, <select event type>)
create(Res.current, [])
// 等同于 Observer ,它正是 SubscribeMount 的简写
monut(Res.current, [])
unmonut(Res.current, [])
  • 新增next(bool)
const current = async (event, next) => {
// 当前周期中进行
next()
// 下一个周期中进行
next(true)
// 下下个周期中进行
next(true, true)
// 以此类推
}