本文整理汇总了Golang中github.com/uber/tchannel-go.Channel类的典型用法代码示例。如果您正苦于以下问题:Golang Channel类的具体用法?Golang Channel怎么用?Golang Channel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Channel类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: getClients
func getClients(t *testing.T, serverCh *tchannel.Channel) (gen.TChanSimpleService, gen.TChanSecondService) {
serverInfo := serverCh.PeerInfo()
ch := testutils.NewClient(t, nil)
ch.Peers().Add(serverInfo.HostPort)
client := NewClient(ch, serverInfo.ServiceName, nil)
simpleClient := gen.NewTChanSimpleServiceClient(client)
secondClient := gen.NewTChanSecondServiceClient(client)
return simpleClient, secondClient
}
示例2: NewZipkinTraceReporter
// NewZipkinTraceReporter returns a zipkin trace reporter that submits span to tcollector service.
func NewZipkinTraceReporter(ch *tc.Channel) *ZipkinTraceReporter {
thriftClient := thrift.NewClient(ch, tcollectorServiceName, nil)
client := tcollector.NewTChanTCollectorClient(thriftClient)
// create the goroutine method to actually to the submit Span.
reporter := &ZipkinTraceReporter{
tchannel: ch,
client: client,
c: make(chan zipkinData, chanBufferSize),
logger: ch.Logger(),
}
go reporter.zipkinSpanWorker()
return reporter
}
示例3: getClients
func getClients(serverCh *tchannel.Channel) (gen.TChanSimpleService, gen.TChanSecondService, error) {
serverInfo := serverCh.PeerInfo()
ch, err := testutils.NewClientChannel(nil)
if err != nil {
return nil, nil, err
}
ch.Peers().Add(serverInfo.HostPort)
client := NewClient(ch, serverInfo.ServiceName, nil)
simpleClient := gen.NewTChanSimpleServiceClient(client)
secondClient := gen.NewTChanSecondServiceClient(client)
return simpleClient, secondClient, nil
}
示例4: NewTCollectorReporter
// NewTCollectorReporter return trace reporter that submits span to TCollector.
func NewTCollectorReporter(ch *tc.Channel) *TCollectorReporter {
thriftClient := thrift.NewClient(ch, tcollectorServiceName, nil)
client := tcollector.NewTChanTCollectorClient(thriftClient)
curHostIP, err := tc.ListenIP()
if err != nil {
ch.Logger().WithFields(tc.ErrField(err)).Warn("TCollector TraceReporter failed to get IP.")
curHostIP = net.IPv4(0, 0, 0, 0)
}
// create the goroutine method to actually to the submit Span.
reporter := &TCollectorReporter{
tchannel: ch,
client: client,
c: make(chan tc.TraceData, chanBufferSize),
logger: ch.Logger(),
curHostIP: inetAton(curHostIP.String()),
}
go reporter.worker()
return reporter
}