本文整理汇总了Golang中github.com/cloudfoundry/yagnats/fakeyagnats.FakeYagnats.OnPing方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeYagnats.OnPing方法的具体用法?Golang FakeYagnats.OnPing怎么用?Golang FakeYagnats.OnPing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/yagnats/fakeyagnats.FakeYagnats
的用法示例。
在下文中一共展示了FakeYagnats.OnPing方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
p = r.Lookup("bar")
Ω(p).Should(BeNil())
})
It("disables pruning when NATS is unavailable", func() {
r.Register("foo", fooEndpoint)
r.Register("fooo", fooEndpoint)
r.Register("bar", barEndpoint)
r.Register("baar", barEndpoint)
Ω(r.NumUris()).To(Equal(4))
Ω(r.NumEndpoints()).To(Equal(2))
messageBus.OnPing(func() bool { return false })
r.StartPruningCycle()
time.Sleep(configObj.PruneStaleDropletsInterval + 10*time.Millisecond)
Ω(r.NumUris()).To(Equal(4))
Ω(r.NumEndpoints()).To(Equal(2))
})
It("does not block when pruning", func() {
// when pruning stale droplets,
// and the stale check takes a while,
// and a read request comes in (i.e. from Lookup),
// the read request completes before the stale check
r.Register("foo", fooEndpoint)
r.Register("fooo", fooEndpoint)