本文整理汇总了Golang中github.com/djosephsen/hustlebot/lib.Broker.LinkCallback方法的典型用法代码示例。如果您正苦于以下问题:Golang Broker.LinkCallback方法的具体用法?Golang Broker.LinkCallback怎么用?Golang Broker.LinkCallback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/djosephsen/hustlebot/lib.Broker
的用法示例。
在下文中一共展示了Broker.LinkCallback方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: newLink
func newLink(b *lazlo.Broker, path string, clickChan chan string) string {
link_cb := b.LinkCallback(path)
go func(link_cb *lazlo.LinkCallback, clickChan chan string) {
for {
<-link_cb.Chan
clickChan <- link_cb.Path
}
}(link_cb, clickChan)
return fmt.Sprintf("Ok, <%s|here> is a link on %s", link_cb.URL, path)
}
示例2: newChoice
func newChoice(b *lazlo.Broker, clickChan chan string) string {
opt1 := b.LinkCallback(`option1`)
opt2 := b.LinkCallback(`option2`)
go func(opt1 *lazlo.LinkCallback, opt2 *lazlo.LinkCallback, clickChan chan string) {
for {
select {
case <-opt1.Chan:
clickChan <- `THIS`
case <-opt2.Chan:
clickChan <- `THAT`
}
}
}(opt1, opt2, clickChan)
return fmt.Sprintf("you can get with <%s|THIS> or you can get with <%s|THAT>", opt1.URL, opt2.URL)
}