01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\BackgroundJob;
|
|
|
|
use OCA\Talk\CachePrefix;
|
|
use OCA\Talk\Manager;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\IJob;
|
|
use OCP\BackgroundJob\TimedJob;
|
|
use OCP\ICache;
|
|
use OCP\ICacheFactory;
|
|
|
|
class ResetAssignedSignalingServer extends TimedJob {
|
|
protected ICache $cache;
|
|
|
|
/**
|
|
* @param ITimeFactory $time
|
|
* @param Manager $manager
|
|
* @param ICacheFactory $cacheFactory
|
|
*/
|
|
public function __construct(
|
|
ITimeFactory $time,
|
|
protected Manager $manager,
|
|
ICacheFactory $cacheFactory,
|
|
) {
|
|
parent::__construct($time);
|
|
|
|
// Every 5 minutes
|
|
$this->setInterval(60 * 5);
|
|
$this->setTimeSensitivity(IJob::TIME_SENSITIVE);
|
|
|
|
$this->cache = $cacheFactory->createDistributed(CachePrefix::SIGNALING_ASSIGNED_SERVER);
|
|
}
|
|
|
|
#[\Override]
|
|
protected function run($argument): void {
|
|
$this->manager->resetAssignedSignalingServers($this->cache);
|
|
}
|
|
}
|