Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在另一个 gRPC 函数中调用一个 gRPC 函数(即像一个包装器)。您是否建议使用 gRPC 拦截器来实现它?嵌套 gRPC 调用的最佳实践是什么?
如果有两个 GRPC 方法具有交叉(或共享)逻辑,我建议您将其逻辑的公共部分移动到另一个非 GRPC 函数中,然后只使用这两个方法中的这个新函数。那将是最好的选择。拦截器是为中间件实现而设计的,但不适用于您这样的特定用例。