helloworld

package
v0.0.0-...-9c060cc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 11, 2021 License: Apache-2.0 Imports: 12 Imported by: 0

README

ProtoC

prerequisites

proto requirments.


cd c:/work/github/protocolbuffers
git clone https://github.com/protocolbuffers/protobuf.git


cd c:/work/github/gogo
git clone https://github.com/gogo/protobuf.git

cd c:/work/github/fluffy-bunny/grpcdotnetgo/example


cd example

go mod vendor 

go get -u github.com/fluffy-bunny/protoc-gen-go-di/cmd/protoc-gen-go-di

protoc --proto_path=. --proto_path=vendor --proto_path=vendor/github.com/fluffy-bunny  --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative --go-di_out=. --go-di_opt=paths=source_relative internal\grpcContracts\helloworld\helloworld.proto  

 

Documentation

Index

Constants

View Source
const (
	FMN_helloworld_Greeter2_SayHello = "/helloworld.Greeter2/SayHello"
)

FullMethodNames for Greeter2

View Source
const (
	FMN_helloworld_Greeter_SayHello = "/helloworld.Greeter/SayHello"
)

FullMethodNames for Greeter

Variables

View Source
var (
	HelloDirectives_name = map[int32]string{
		0: "HELLO_DIRECTIVES_UNKNOWN",
		1: "HELLO_DIRECTIVES_PANIC",
		2: "HELLO_DIRECTIVES_ERROR",
	}
	HelloDirectives_value = map[string]int32{
		"HELLO_DIRECTIVES_UNKNOWN": 0,
		"HELLO_DIRECTIVES_PANIC":   1,
		"HELLO_DIRECTIVES_ERROR":   2,
	}
)

Enum value maps for HelloDirectives.

View Source
var File_internal_grpcContracts_helloworld_helloworld_proto protoreflect.FileDescriptor
View Source
var Greeter2_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "helloworld.Greeter2",
	HandlerType: (*Greeter2Server)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SayHello",
			Handler:    _Greeter2_SayHello_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "internal/grpcContracts/helloworld/helloworld.proto",
}

Greeter2_ServiceDesc is the grpc.ServiceDesc for Greeter2 service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Greeter_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "helloworld.Greeter",
	HandlerType: (*GreeterServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SayHello",
			Handler:    _Greeter_SayHello_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "internal/grpcContracts/helloworld/helloworld.proto",
}

Greeter_ServiceDesc is the grpc.ServiceDesc for Greeter service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var M_helloworld_Greeter2FullMethodNameExecuteMap = map[string]func(service IGreeter2Server, ctx context.Context, request interface{}) (interface{}, error){
	"/helloworld.Greeter2/SayHello": func(service IGreeter2Server, ctx context.Context, request interface{}) (interface{}, error) {
		req := request.(*HelloRequest)
		return service.SayHello(ctx, req)
	},
}

M_helloworld_Greeter2FullMethodNameExecuteMap keys match that of grpc.UnaryServerInfo.FullMethodName

View Source
var M_helloworld_GreeterFullMethodNameExecuteMap = map[string]func(service IGreeterServer, ctx context.Context, request interface{}) (interface{}, error){
	"/helloworld.Greeter/SayHello": func(service IGreeterServer, ctx context.Context, request interface{}) (interface{}, error) {
		req := request.(*HelloRequest)
		return service.SayHello(ctx, req)
	},
}

M_helloworld_GreeterFullMethodNameExecuteMap keys match that of grpc.UnaryServerInfo.FullMethodName

IGreeter2Service reflect type

IGreeterService reflect type

Functions

func Get_helloworldFullEmptyResponseFromFullMethodName

func Get_helloworldFullEmptyResponseFromFullMethodName(fullMethodName string) func() interface{}

func Get_helloworldFullEmptyResponseWithErrorFromFullMethodName

func Get_helloworldFullEmptyResponseWithErrorFromFullMethodName(fullMethodName string) func() interface{}

func New_helloworldFullMethodNameSlice

func New_helloworldFullMethodNameSlice() []string

New_helloworldFullMethodNameSLice create a new map of fullMethodNames to []string i.e. /helloworld.Greeter/SayHello

func RegisterGreeter2Server

func RegisterGreeter2Server(s grpc.ServiceRegistrar, srv Greeter2Server)

func RegisterGreeter2ServerDI

func RegisterGreeter2ServerDI(s grpc.ServiceRegistrar) interface{}

func RegisterGreeterServer

func RegisterGreeterServer(s grpc.ServiceRegistrar, srv GreeterServer)

func RegisterGreeterServerDI

func RegisterGreeterServerDI(s grpc.ServiceRegistrar) interface{}

Types

type Greeter2Client

type Greeter2Client interface {
	// Sends a greeting
	SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply2, error)
}

Greeter2Client is the client API for Greeter2 service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewGreeter2Client

func NewGreeter2Client(cc grpc.ClientConnInterface) Greeter2Client

type Greeter2Server

type Greeter2Server interface {
	// Sends a greeting
	SayHello(context.Context, *HelloRequest) (*HelloReply2, error)
	// contains filtered or unexported methods
}

Greeter2Server is the server API for Greeter2 service. All implementations must embed UnimplementedGreeter2Server for forward compatibility

type GreeterClient

type GreeterClient interface {
	// Sends a greeting
	SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply, error)
}

GreeterClient is the client API for Greeter service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewGreeterClient

func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient

type GreeterServer

type GreeterServer interface {
	// Sends a greeting
	SayHello(context.Context, *HelloRequest) (*HelloReply, error)
	// contains filtered or unexported methods
}

GreeterServer is the server API for Greeter service. All implementations must embed UnimplementedGreeterServer for forward compatibility

type HelloDirectives

type HelloDirectives int32
const (
	HelloDirectives_HELLO_DIRECTIVES_UNKNOWN HelloDirectives = 0
	HelloDirectives_HELLO_DIRECTIVES_PANIC   HelloDirectives = 1
	HelloDirectives_HELLO_DIRECTIVES_ERROR   HelloDirectives = 2
)

func (HelloDirectives) Descriptor

func (HelloDirectives) Enum

func (x HelloDirectives) Enum() *HelloDirectives

func (HelloDirectives) EnumDescriptor deprecated

func (HelloDirectives) EnumDescriptor() ([]byte, []int)

Deprecated: Use HelloDirectives.Descriptor instead.

func (HelloDirectives) Number

func (HelloDirectives) String

func (x HelloDirectives) String() string

func (HelloDirectives) Type

type HelloReply

type HelloReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` //error.Error error = 999;
	// contains filtered or unexported fields
}

The response message containing the greetings

func (*HelloReply) Descriptor deprecated

func (*HelloReply) Descriptor() ([]byte, []int)

Deprecated: Use HelloReply.ProtoReflect.Descriptor instead.

func (*HelloReply) GetMessage

func (x *HelloReply) GetMessage() string

func (*HelloReply) ProtoMessage

func (*HelloReply) ProtoMessage()

func (*HelloReply) ProtoReflect

func (x *HelloReply) ProtoReflect() protoreflect.Message

func (*HelloReply) Reset

func (x *HelloReply) Reset()

func (*HelloReply) String

func (x *HelloReply) String() string

type HelloReply2

type HelloReply2 struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*HelloReply2) Descriptor deprecated

func (*HelloReply2) Descriptor() ([]byte, []int)

Deprecated: Use HelloReply2.ProtoReflect.Descriptor instead.

func (*HelloReply2) GetMessage

func (x *HelloReply2) GetMessage() string

func (*HelloReply2) ProtoMessage

func (*HelloReply2) ProtoMessage()

func (*HelloReply2) ProtoReflect

func (x *HelloReply2) ProtoReflect() protoreflect.Message

func (*HelloReply2) Reset

func (x *HelloReply2) Reset()

func (*HelloReply2) String

func (x *HelloReply2) String() string

type HelloRequest

type HelloRequest struct {
	Name      string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Directive HelloDirectives `protobuf:"varint,2,opt,name=Directive,proto3,enum=helloworld.HelloDirectives" json:"Directive,omitempty"`
	// contains filtered or unexported fields
}

The request message containing the user's name.

func (*HelloRequest) Descriptor deprecated

func (*HelloRequest) Descriptor() ([]byte, []int)

Deprecated: Use HelloRequest.ProtoReflect.Descriptor instead.

func (*HelloRequest) GetDirective

func (x *HelloRequest) GetDirective() HelloDirectives

func (*HelloRequest) GetName

func (x *HelloRequest) GetName() string

func (*HelloRequest) ProtoMessage

func (*HelloRequest) ProtoMessage()

func (*HelloRequest) ProtoReflect

func (x *HelloRequest) ProtoReflect() protoreflect.Message

func (*HelloRequest) Reset

func (x *HelloRequest) Reset()

func (*HelloRequest) String

func (x *HelloRequest) String() string

type IGreeter2Server

type IGreeter2Server interface {
	SayHello(ctx context.Context, request *HelloRequest) (*HelloReply2, error)
}

IGreeter2Server defines the grpc server

type IGreeter2Service

type IGreeter2Service interface {
	SayHello(request *HelloRequest) (*HelloReply2, error)
}

IGreeter2Service defines the required downstream service interface

func GetGreeter2ServiceFromContainer

func GetGreeter2ServiceFromContainer(ctn sarulabsdi.Container) IGreeter2Service

GetGreeter2ServiceFromContainer fetches the downstream di.Request scoped service

type IGreeterServer

type IGreeterServer interface {
	SayHello(ctx context.Context, request *HelloRequest) (*HelloReply, error)
}

IGreeterServer defines the grpc server

type IGreeterService

type IGreeterService interface {
	SayHello(request *HelloRequest) (*HelloReply, error)
}

IGreeterService defines the required downstream service interface

func GetGreeterServiceFromContainer

func GetGreeterServiceFromContainer(ctn sarulabsdi.Container) IGreeterService

GetGreeterServiceFromContainer fetches the downstream di.Request scoped service

type UnimplementedGreeter2Server

type UnimplementedGreeter2Server struct {
}

UnimplementedGreeter2Server must be embedded to have forward compatible implementations.

func (UnimplementedGreeter2Server) SayHello

type UnimplementedGreeterServer

type UnimplementedGreeterServer struct {
}

UnimplementedGreeterServer must be embedded to have forward compatible implementations.

func (UnimplementedGreeterServer) SayHello

type UnsafeGreeter2Server

type UnsafeGreeter2Server interface {
	// contains filtered or unexported methods
}

UnsafeGreeter2Server may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to Greeter2Server will result in compilation errors.

type UnsafeGreeterServer

type UnsafeGreeterServer interface {
	// contains filtered or unexported methods
}

UnsafeGreeterServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to GreeterServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL