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


Golang queryservice.Query_StreamHealthServer類代碼示例

本文整理匯總了Golang中github.com/youtube/vitess/go/vt/proto/queryservice.Query_StreamHealthServer的典型用法代碼示例。如果您正苦於以下問題:Golang Query_StreamHealthServer類的具體用法?Golang Query_StreamHealthServer怎麽用?Golang Query_StreamHealthServer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Query_StreamHealthServer類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: StreamHealth

// StreamHealth is part of the queryservice.QueryServer interface
func (q *query) StreamHealth(request *querypb.StreamHealthRequest, stream queryservicepb.Query_StreamHealthServer) (err error) {
	defer q.server.HandlePanic(&err)

	c := make(chan *querypb.StreamHealthResponse, 10)
	wg := sync.WaitGroup{}
	wg.Add(1)
	go func() {
		defer wg.Done()
		for shr := range c {
			// we send until the client disconnects
			if err := stream.Send(shr); err != nil {
				return
			}
		}
	}()

	id, err := q.server.StreamHealthRegister(c)
	if err != nil {
		close(c)
		wg.Wait()
		return err
	}
	wg.Wait()
	return q.server.StreamHealthUnregister(id)
}
開發者ID:littleyang,項目名稱:vitess,代碼行數:26,代碼來源:server.go

示例2: StreamHealth

// StreamHealth is part of the queryservice.QueryServer interface
func (q *query) StreamHealth(request *querypb.StreamHealthRequest, stream queryservicepb.Query_StreamHealthServer) (err error) {
	defer q.server.HandlePanic(&err)

	c := make(chan *querypb.StreamHealthResponse, 10)

	id, err := q.server.StreamHealthRegister(c)
	if err != nil {
		close(c)
		return err
	}

	for shr := range c {
		// we send until the client disconnects
		if err := stream.Send(shr); err != nil {
			break
		}
	}

	return q.server.StreamHealthUnregister(id)
}
開發者ID:dumbunny,項目名稱:vitess,代碼行數:21,代碼來源:server.go


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