move wrapper files

This commit is contained in:
Asim Aslam
2018-04-14 19:24:17 +01:00
parent d00ac200dd
commit 19fdfba0bf
2 changed files with 0 additions and 0 deletions

17
client/wrapper.go Normal file
View File

@@ -0,0 +1,17 @@
package client
import (
"context"
)
// CallFunc represents the individual call func
type CallFunc func(ctx context.Context, address string, 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