當前位置: 首頁>>代碼示例>>Golang>>正文


Golang query.Error類代碼示例

本文整理匯總了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)
	}
}
開發者ID:phonkee,項目名稱:tuqtng,代碼行數:14,代碼來源:http_response.go

示例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
}
開發者ID:latinojoel,項目名稱:tuqtng,代碼行數:15,代碼來源:fast_count.go

示例3: SendError

func (this *MockResponse) SendError(err query.Error) {
	this.err = err
	if err.IsFatal() {
		close(this.done)
	}
}
開發者ID:latinojoel,項目名稱:tuqtng,代碼行數:6,代碼來源:json.go


注:本文中的github.com/couchbaselabs/tuqtng/query.Error類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。