/
vshmidt
/
Hangfire
Обзор
Документация
Войти
/
vshmidt
/
Hangfire
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Hangfire.NetCore/IBackgroundJobClientFactory.cs
27 строк
1018 B
Cédric Luthi
Add IBackgroundJobClientFactoryV2 and IRecurringJobManagerFactoryV2
15 дек 2022, 08:35
15 дек 2022, 08:35
d765faa
Код
Авторство
О чём код?
// This file is part of Hangfire. Copyright © 2021 Hangfire OÜ. // // Hangfire is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 // of the License, or any later version. // // Hangfire is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with Hangfire. If not, see <http://www.gnu.org/licenses/>. namespace Hangfire { public interface IBackgroundJobClientFactoryV2 : IBackgroundJobClientFactory { IBackgroundJobClientV2 GetClientV2(JobStorage storage); } public interface IBackgroundJobClientFactory { IBackgroundJobClient GetClient(JobStorage storage); } }