425
426
// GetMutableState mocks base method.
427
>
func (m *MockHistoryServiceClient) GetMutableState(ctx context.Context, in *historyservice.GetMutableStateRequest, opts ...grpc.CallOption) (*historyservice.GetMutableStateResponse, error) {
service_grpc.pb.mock.go
428
>
m.ctrl.T.Helper()
429
>
varargs := []any{ctx, in}
430
>
for _, a := range opts {
431
varargs = append(varargs, a)
432
}
434
>
ret0, _ := ret[0].(*historyservice.GetMutableStateResponse)
435
>
ret1, _ := ret[1].(error)
436
>
return ret0, ret1
437
}
438
439
// GetMutableState indicates an expected call of GetMutableState.
440
>
func (mr *MockHistoryServiceClientMockRecorder) GetMutableState(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
441
>
mr.mock.ctrl.T.Helper()
442
>
varargs := append([]any{ctx, in}, opts...)
443
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMutableState", reflect.TypeOf((*MockHistoryServiceClient)(nil).GetMutableState), varargs...)
444
>
}
445
446
// GetReplicationMessages mocks base method.