849
850
// UpdateReplicationQueueReaderState mocks base method.
851
>
func (m *MockShardContext) UpdateReplicationQueueReaderState(readerID int64, readerState *persistence.QueueReaderState) error {
shard_context_mock.go
852
>
m.ctrl.T.Helper()
853
>
ret := m.ctrl.Call(m, "UpdateReplicationQueueReaderState", readerID, readerState)
854
>
ret0, _ := ret[0].(error)
855
>
return ret0
856
>
}
857
858
// UpdateReplicationQueueReaderState indicates an expected call of UpdateReplicationQueueReaderState.
859
>
func (mr *MockShardContextMockRecorder) UpdateReplicationQueueReaderState(readerID, readerState any) *gomock.Call {
shard_context_mock.go
860
>
mr.mock.ctrl.T.Helper()
861
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateReplicationQueueReaderState", reflect.TypeOf((*MockShardContext)(nil).UpdateReplicationQueueReaderState), readerID, readerState)
862
>
}
863
864
// UpdateReplicatorDLQAckLevel mocks base method.