github.com/m3db/m3@v1.5.0/src/aggregator/client/writer_mock.go (about)

     1  // Code generated by MockGen. DO NOT EDIT.
     2  // Source: github.com/m3db/m3/src/aggregator/client/writer.go
     3  
     4  // Copyright (c) 2021 Uber Technologies, Inc.
     5  //
     6  // Permission is hereby granted, free of charge, to any person obtaining a copy
     7  // of this software and associated documentation files (the "Software"), to deal
     8  // in the Software without restriction, including without limitation the rights
     9  // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  // copies of the Software, and to permit persons to whom the Software is
    11  // furnished to do so, subject to the following conditions:
    12  //
    13  // The above copyright notice and this permission notice shall be included in
    14  // all copies or substantial portions of the Software.
    15  //
    16  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    17  // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    18  // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    19  // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    20  // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    21  // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22  // THE SOFTWARE.
    23  
    24  // Package client is a generated GoMock package.
    25  package client
    26  
    27  import (
    28  	"reflect"
    29  
    30  	"github.com/golang/mock/gomock"
    31  )
    32  
    33  // MockinstanceWriter is a mock of instanceWriter interface.
    34  type MockinstanceWriter struct {
    35  	ctrl     *gomock.Controller
    36  	recorder *MockinstanceWriterMockRecorder
    37  }
    38  
    39  // MockinstanceWriterMockRecorder is the mock recorder for MockinstanceWriter.
    40  type MockinstanceWriterMockRecorder struct {
    41  	mock *MockinstanceWriter
    42  }
    43  
    44  // NewMockinstanceWriter creates a new mock instance.
    45  func NewMockinstanceWriter(ctrl *gomock.Controller) *MockinstanceWriter {
    46  	mock := &MockinstanceWriter{ctrl: ctrl}
    47  	mock.recorder = &MockinstanceWriterMockRecorder{mock}
    48  	return mock
    49  }
    50  
    51  // EXPECT returns an object that allows the caller to indicate expected use.
    52  func (m *MockinstanceWriter) EXPECT() *MockinstanceWriterMockRecorder {
    53  	return m.recorder
    54  }
    55  
    56  // Close mocks base method.
    57  func (m *MockinstanceWriter) Close() error {
    58  	m.ctrl.T.Helper()
    59  	ret := m.ctrl.Call(m, "Close")
    60  	ret0, _ := ret[0].(error)
    61  	return ret0
    62  }
    63  
    64  // Close indicates an expected call of Close.
    65  func (mr *MockinstanceWriterMockRecorder) Close() *gomock.Call {
    66  	mr.mock.ctrl.T.Helper()
    67  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockinstanceWriter)(nil).Close))
    68  }
    69  
    70  // Flush mocks base method.
    71  func (m *MockinstanceWriter) Flush() error {
    72  	m.ctrl.T.Helper()
    73  	ret := m.ctrl.Call(m, "Flush")
    74  	ret0, _ := ret[0].(error)
    75  	return ret0
    76  }
    77  
    78  // Flush indicates an expected call of Flush.
    79  func (mr *MockinstanceWriterMockRecorder) Flush() *gomock.Call {
    80  	mr.mock.ctrl.T.Helper()
    81  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Flush", reflect.TypeOf((*MockinstanceWriter)(nil).Flush))
    82  }
    83  
    84  // QueueSize mocks base method.
    85  func (m *MockinstanceWriter) QueueSize() int {
    86  	m.ctrl.T.Helper()
    87  	ret := m.ctrl.Call(m, "QueueSize")
    88  	ret0, _ := ret[0].(int)
    89  	return ret0
    90  }
    91  
    92  // QueueSize indicates an expected call of QueueSize.
    93  func (mr *MockinstanceWriterMockRecorder) QueueSize() *gomock.Call {
    94  	mr.mock.ctrl.T.Helper()
    95  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "QueueSize", reflect.TypeOf((*MockinstanceWriter)(nil).QueueSize))
    96  }
    97  
    98  // Write mocks base method.
    99  func (m *MockinstanceWriter) Write(shard uint32, payload payloadUnion) error {
   100  	m.ctrl.T.Helper()
   101  	ret := m.ctrl.Call(m, "Write", shard, payload)
   102  	ret0, _ := ret[0].(error)
   103  	return ret0
   104  }
   105  
   106  // Write indicates an expected call of Write.
   107  func (mr *MockinstanceWriterMockRecorder) Write(shard, payload interface{}) *gomock.Call {
   108  	mr.mock.ctrl.T.Helper()
   109  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Write", reflect.TypeOf((*MockinstanceWriter)(nil).Write), shard, payload)
   110  }