mirror of
https://github.com/linka-cloud/grpc.git
synced 2024-11-25 12:26:26 +00:00
recovery server interceptor
This commit is contained in:
parent
c8ecf58b3e
commit
aaf2aa3964
@ -3,25 +3,31 @@ package recovery
|
|||||||
import (
|
import (
|
||||||
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
|
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
|
|
||||||
|
"go.linka.cloud/grpc/interceptors"
|
||||||
)
|
)
|
||||||
|
|
||||||
type interceptors struct {
|
func NewInterceptors(opts ...grpc_recovery.Option) interceptors.ServerInterceptors {
|
||||||
opts grpc_recovery.Option
|
return &recovery{opts: opts}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *interceptors) UnaryServerInterceptor() grpc.UnaryServerInterceptor {
|
type recovery struct {
|
||||||
return grpc_recovery.UnaryServerInterceptor(i.opts)
|
opts []grpc_recovery.Option
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *interceptors) StreamServerInterceptor() grpc.StreamServerInterceptor {
|
func (i *recovery) UnaryServerInterceptor() grpc.UnaryServerInterceptor {
|
||||||
return grpc_recovery.StreamServerInterceptor(i.opts)
|
return grpc_recovery.UnaryServerInterceptor(i.opts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *interceptors) UnaryClientInterceptor() grpc.UnaryClientInterceptor {
|
func (i *recovery) StreamServerInterceptor() grpc.StreamServerInterceptor {
|
||||||
|
return grpc_recovery.StreamServerInterceptor(i.opts...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (i *recovery) UnaryClientInterceptor() grpc.UnaryClientInterceptor {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *interceptors) StreamClientInterceptor() grpc.StreamClientInterceptor {
|
func (i *recovery) StreamClientInterceptor() grpc.StreamClientInterceptor {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user