946
947
// SubscribeReplicationNotification mocks base method.
948
>
func (m *MockEngine) SubscribeReplicationNotification(arg0 string) (<-chan struct{}, string) {
engine_mock.go
949
>
m.ctrl.T.Helper()
950
>
ret := m.ctrl.Call(m, "SubscribeReplicationNotification", arg0)
951
>
ret0, _ := ret[0].(<-chan struct{})
952
>
ret1, _ := ret[1].(string)
953
>
return ret0, ret1
954
>
}
955
956
// SubscribeReplicationNotification indicates an expected call of SubscribeReplicationNotification.
957
>
func (mr *MockEngineMockRecorder) SubscribeReplicationNotification(arg0 any) *gomock.Call {
engine_mock.go
958
>
mr.mock.ctrl.T.Helper()
959
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SubscribeReplicationNotification", reflect.TypeOf((*MockEngine)(nil).SubscribeReplicationNotification), arg0)
960
>
}
961
962
// SyncActivities mocks base method.