func RegisterGreeterHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterGreeterHandler registers the http handlers for service Greeter to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterGreeterHandlerClient(ctx context.Context, mux *runtime.ServeMux, client GreeterClient) error
RegisterGreeterHandlerClient registers the http handlers for service Greeter to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "GreeterClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "GreeterClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "GreeterClient" to call the correct interceptors.
func RegisterGreeterHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterGreeterHandlerFromEndpoint is same as RegisterGreeterHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterGreeterHandlerServer(ctx context.Context, mux *runtime.ServeMux, server GreeterServer) error
RegisterGreeterHandlerServer registers the http handlers for service Greeter to "mux". UnaryRPC :call GreeterServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterGreeterHandlerFromEndpoint instead.
func RegisterGreeterServer(s *grpc.Server, srv GreeterServer)
GreeterClient is the client API for Greeter service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type GreeterClient interface { SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply, error) }
func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient
GreeterServer is the server API for Greeter service.
type GreeterServer interface { SayHello(context.Context, *HelloRequest) (*HelloReply, error) }
type HelloReply struct { Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*HelloReply) Descriptor() ([]byte, []int)
func (m *HelloReply) GetMessage() string
func (*HelloReply) ProtoMessage()
func (m *HelloReply) Reset()
func (m *HelloReply) String() string
func (m *HelloReply) XXX_DiscardUnknown()
func (m *HelloReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *HelloReply) XXX_Merge(src proto.Message)
func (m *HelloReply) XXX_Size() int
func (m *HelloReply) XXX_Unmarshal(b []byte) error
type HelloRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` StrVal *wrappers.StringValue `protobuf:"bytes,2,opt,name=strVal,proto3" json:"strVal,omitempty"` FloatVal *wrappers.FloatValue `protobuf:"bytes,3,opt,name=floatVal,proto3" json:"floatVal,omitempty"` DoubleVal *wrappers.DoubleValue `protobuf:"bytes,4,opt,name=doubleVal,proto3" json:"doubleVal,omitempty"` BoolVal *wrappers.BoolValue `protobuf:"bytes,5,opt,name=boolVal,proto3" json:"boolVal,omitempty"` BytesVal *wrappers.BytesValue `protobuf:"bytes,6,opt,name=bytesVal,proto3" json:"bytesVal,omitempty"` Int32Val *wrappers.Int32Value `protobuf:"bytes,7,opt,name=int32Val,proto3" json:"int32Val,omitempty"` Uint32Val *wrappers.UInt32Value `protobuf:"bytes,8,opt,name=uint32Val,proto3" json:"uint32Val,omitempty"` Int64Val *wrappers.Int64Value `protobuf:"bytes,9,opt,name=int64Val,proto3" json:"int64Val,omitempty"` Uint64Val *wrappers.UInt64Value `protobuf:"bytes,10,opt,name=uint64Val,proto3" json:"uint64Val,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*HelloRequest) Descriptor() ([]byte, []int)
func (m *HelloRequest) GetBoolVal() *wrappers.BoolValue
func (m *HelloRequest) GetBytesVal() *wrappers.BytesValue
func (m *HelloRequest) GetDoubleVal() *wrappers.DoubleValue
func (m *HelloRequest) GetFloatVal() *wrappers.FloatValue
func (m *HelloRequest) GetInt32Val() *wrappers.Int32Value
func (m *HelloRequest) GetInt64Val() *wrappers.Int64Value
func (m *HelloRequest) GetName() string
func (m *HelloRequest) GetStrVal() *wrappers.StringValue
func (m *HelloRequest) GetUint32Val() *wrappers.UInt32Value
func (m *HelloRequest) GetUint64Val() *wrappers.UInt64Value
func (*HelloRequest) ProtoMessage()
func (m *HelloRequest) Reset()
func (m *HelloRequest) String() string
func (m *HelloRequest) XXX_DiscardUnknown()
func (m *HelloRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *HelloRequest) XXX_Merge(src proto.Message)
func (m *HelloRequest) XXX_Size() int
func (m *HelloRequest) XXX_Unmarshal(b []byte) error
UnimplementedGreeterServer can be embedded to have forward compatible implementations.
type UnimplementedGreeterServer struct { }
func (*UnimplementedGreeterServer) SayHello(ctx context.Context, req *HelloRequest) (*HelloReply, error)