You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
819 B
39 lines
819 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\BackgroundJob;
|
|
|
|
use OCA\Talk\Signaling\Messages;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\IJob;
|
|
use OCP\BackgroundJob\TimedJob;
|
|
|
|
/**
|
|
* Class ExpireSignalingMessage
|
|
*
|
|
* @package OCA\Talk\BackgroundJob
|
|
*/
|
|
class ExpireSignalingMessage extends TimedJob {
|
|
|
|
public function __construct(
|
|
ITimeFactory $timeFactory,
|
|
protected Messages $messages,
|
|
) {
|
|
parent::__construct($timeFactory);
|
|
|
|
// Every 5 minutes
|
|
$this->setInterval(60 * 5);
|
|
$this->setTimeSensitivity(IJob::TIME_SENSITIVE);
|
|
|
|
}
|
|
|
|
protected function run($argument): void {
|
|
// Older than 5 minutes
|
|
$this->messages->expireOlderThan(5 * 60);
|
|
}
|
|
}
|