项目文件夹

文件
T
Asim Aslam 1cd7cfaa6c
Run tests / Test repo (push) Has been cancelled
go-micro.dev/v4 (#2305)
2021-10-12 12:55:53 +01:00

20 行
508 B
Go

package client
import (
"context"
"go-micro.dev/v4/registry"
)
// CallFunc represents the individual call func
type CallFunc func(ctx context.Context, node *registry.Node, req Request, rsp interface{}, opts CallOptions) error
// CallWrapper is a low level wrapper for the CallFunc
type CallWrapper func(CallFunc) CallFunc
// Wrapper wraps a client and returns a client
type Wrapper func(Client) Client
// StreamWrapper wraps a Stream and returns the equivalent
type StreamWrapper func(Stream) Stream