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