mirror of
				https://github.com/linka-cloud/grpc.git
				synced 2025-10-31 01:22:29 +00:00 
			
		
		
		
	recovery server interceptor
This commit is contained in:
		| @@ -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") | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user