2015-01-14 02:31:27 +03:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
2015-01-31 18:49:21 +03:00
|
|
|
log "github.com/golang/glog"
|
2015-11-20 19:17:33 +03:00
|
|
|
c "github.com/micro/go-micro/context"
|
|
|
|
example "github.com/micro/go-micro/examples/server/proto/example"
|
|
|
|
"github.com/micro/go-micro/server"
|
2015-05-23 13:53:40 +03:00
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type Example struct{}
|
|
|
|
|
|
|
|
func (e *Example) Call(ctx context.Context, req *example.Request, rsp *example.Response) error {
|
2015-05-27 00:39:48 +03:00
|
|
|
md, _ := c.GetMetadata(ctx)
|
2015-06-01 20:55:27 +03:00
|
|
|
log.Infof("Received Example.Call request with metadata: %v", md)
|
2015-05-27 00:39:48 +03:00
|
|
|
rsp.Msg = server.Config().Id() + ": Hello " + req.Name
|
2015-01-14 02:31:27 +03:00
|
|
|
return nil
|
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
|
|
|
|
func (e *Example) Stream(ctx context.Context, req *example.StreamingRequest, response func(interface{}) error) error {
|
|
|
|
log.Infof("Received Example.Stream request with count: %d", req.Count)
|
|
|
|
for i := 0; i < int(req.Count); i++ {
|
|
|
|
log.Infof("Responding: %d", i)
|
|
|
|
|
|
|
|
r := &example.StreamingResponse{
|
|
|
|
Count: int64(i),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := response(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|