Versions in this module Expand all Collapse all v0 v0.0.1 Jun 19, 2018 Changes in this version + func RegisterFooServer(s *yarpc.Server, srv FooServer) + type FooClient interface + ServerStreamMethod func(ctx context.Context, in *Request) (Foo_ServerStreamMethodClient, error) + UnaryMethod func(ctx context.Context, in *Request) (*Response, error) + func NewFooClient(cc *yarpc.ClientConn) FooClient + type FooServer interface + ServerStreamMethod func(*Request, Foo_ServerStreamMethodServer) error + UnaryMethod func(context.Context, *Request) (*Response, error) + type Foo_ServerStreamMethodClient interface + Recv func() (*Response, error) + type Foo_ServerStreamMethodServer interface + Send func(*Response) error + type Request struct + In string + func (*Request) Descriptor() ([]byte, []int) + func (*Request) ProtoMessage() + func (m *Request) GetIn() string + func (m *Request) Reset() + func (m *Request) String() string + type Response struct + Out string + func (*Response) Descriptor() ([]byte, []int) + func (*Response) ProtoMessage() + func (m *Response) GetOut() string + func (m *Response) Reset() + func (m *Response) String() string