本文整理汇总了Golang中github.com/couchbaselabs/tuqtng/query.Error类的典型用法代码示例。如果您正苦于以下问题:Golang Error类的具体用法?Golang Error怎么用?Golang Error使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Error类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: SendError
func (this *HttpResponse) SendError(err query.Error) {
switch err.Level() {
case query.EXCEPTION:
this.err = err
case query.WARNING:
this.warnings = append(this.warnings, err)
case query.INFO:
this.info = append(this.info, err)
}
if err.IsFatal() {
close(this.results)
}
}
示例2: SendError
func (this *FastCount) SendError(err query.Error) bool {
ok := true
for ok {
select {
case this.supportChannel <- err:
if err.IsFatal() {
return false
}
return true
case _, ok = <-this.downstreamStopChannel:
// someone closed the stop channel
}
}
return false
}
示例3: SendError
func (this *MockResponse) SendError(err query.Error) {
this.err = err
if err.IsFatal() {
close(this.done)
}
}