1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stream_handler.go 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
grpc "google.golang.org/grpc"
)
type StreamHandler struct {
Stub func(interface{}, grpc.ServerStream) error
mutex sync.RWMutex
argsForCall []struct {
arg1 interface{}
arg2 grpc.ServerStream
}
returns struct {
result1 error
}
returnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *StreamHandler) Spy(arg1 interface{}, arg2 grpc.ServerStream) error {
fake.mutex.Lock()
ret, specificReturn := fake.returnsOnCall[len(fake.argsForCall)]
fake.argsForCall = append(fake.argsForCall, struct {
arg1 interface{}
arg2 grpc.ServerStream
}{arg1, arg2})
fake.recordInvocation("streamHandler", []interface{}{arg1, arg2})
fake.mutex.Unlock()
if fake.Stub != nil {
return fake.Stub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
return fake.returns.result1
}
func (fake *StreamHandler) CallCount() int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return len(fake.argsForCall)
}
func (fake *StreamHandler) Calls(stub func(interface{}, grpc.ServerStream) error) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = stub
}
func (fake *StreamHandler) ArgsForCall(i int) (interface{}, grpc.ServerStream) {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return fake.argsForCall[i].arg1, fake.argsForCall[i].arg2
}
func (fake *StreamHandler) Returns(result1 error) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
fake.returns = struct {
result1 error
}{result1}
}
func (fake *StreamHandler) ReturnsOnCall(i int, result1 error) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
if fake.returnsOnCall == nil {
fake.returnsOnCall = make(map[int]struct {
result1 error
})
}
fake.returnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *StreamHandler) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.mutex.RLock()
defer fake.mutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *StreamHandler) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v1.4.12

搜索帮助