2026-08-09 10:43:45 +08:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2026-08-09 15:10:19 +08:00
// - protoc-gen-go-grpc v1.6.2
2026-08-09 18:40:36 +08:00
// - protoc v7.35.1
2026-08-09 15:10:19 +08:00
// source: module/ec/order/proto/coupon.proto
2026-08-09 10:43:45 +08:00
package order
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
const (
Coupon_ByStatus_FullMethodName = "/order.Coupon/ByStatus"
)
// CouponClient is the client API for Coupon 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.
//
// Order(订单)微服务-优惠卷
type CouponClient interface {
// 按状态获取优惠卷
ByStatus ( ctx context . Context , in * Status , opts ... grpc . CallOption ) ( * CouponListReply , error )
}
type couponClient struct {
cc grpc . ClientConnInterface
}
func NewCouponClient ( cc grpc . ClientConnInterface ) CouponClient {
return & couponClient { cc }
}
func ( c * couponClient ) ByStatus ( ctx context . Context , in * Status , opts ... grpc . CallOption ) ( * CouponListReply , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( CouponListReply )
err := c . cc . Invoke ( ctx , Coupon_ByStatus_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
// CouponServer is the server API for Coupon service.
2026-08-09 15:10:19 +08:00
// All implementations should embed UnimplementedCouponServer
2026-08-09 10:43:45 +08:00
// for forward compatibility.
//
// Order(订单)微服务-优惠卷
type CouponServer interface {
// 按状态获取优惠卷
ByStatus ( context . Context , * Status ) ( * CouponListReply , error )
}
2026-08-09 15:10:19 +08:00
// UnimplementedCouponServer should be embedded to have
2026-08-09 10:43:45 +08:00
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedCouponServer struct { }
func ( UnimplementedCouponServer ) ByStatus ( context . Context , * Status ) ( * CouponListReply , error ) {
2026-08-09 15:10:19 +08:00
return nil , status . Error ( codes . Unimplemented , "method ByStatus not implemented" )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
func ( UnimplementedCouponServer ) testEmbeddedByValue ( ) { }
2026-08-09 10:43:45 +08:00
// UnsafeCouponServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to CouponServer will
// result in compilation errors.
type UnsafeCouponServer interface {
mustEmbedUnimplementedCouponServer ( )
}
func RegisterCouponServer ( s grpc . ServiceRegistrar , srv CouponServer ) {
2026-08-09 15:10:19 +08:00
// If the following call panics, it indicates UnimplementedCouponServer was
2026-08-09 10:43:45 +08:00
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t , ok := srv . ( interface { testEmbeddedByValue ( ) } ) ; ok {
t . testEmbeddedByValue ( )
}
s . RegisterService ( & Coupon_ServiceDesc , srv )
}
func _Coupon_ByStatus_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( Status )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( CouponServer ) . ByStatus ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Coupon_ByStatus_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( CouponServer ) . ByStatus ( ctx , req . ( * Status ) )
}
return interceptor ( ctx , in , info , handler )
}
// Coupon_ServiceDesc is the grpc.ServiceDesc for Coupon service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Coupon_ServiceDesc = grpc . ServiceDesc {
ServiceName : "order.Coupon" ,
HandlerType : ( * CouponServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "ByStatus" ,
Handler : _Coupon_ByStatus_Handler ,
} ,
} ,
Streams : [ ] grpc . StreamDesc { } ,
2026-08-09 15:10:19 +08:00
Metadata : "module/ec/order/proto/coupon.proto" ,
2026-08-09 10:43:45 +08:00
}