コード例 #1
0
ファイル: main.go プロジェクト: bradhe/go_protoc_example
// Implementation of the Increment interface function.
func (c countersServiceImpl) Increment(in *counters.CountRequest, out *counters.CountResponse) error {
	counts[in.GetName()] += 1
	out.SetCount(counts[in.GetName()])

	log.Println(fmt.Sprintf("Incrementing %s to %d", in.GetName(), counts[in.GetName()]))

	return nil
}
コード例 #2
0
ファイル: main.go プロジェクト: bradhe/go_protoc_example
// Implementation of the Get interface function.
func (c countersServiceImpl) Get(in *counters.CountRequest, out *counters.CountResponse) error {
	out.SetCount(counts[in.GetName()])
	log.Println(fmt.Sprintf("Getting %s: %d", in.GetName(), counts[in.GetName()]))
	return nil
}