smsplatform-1.0.x-dev/src/Provider/SmsQueueProcessorInterface.php
src/Provider/SmsQueueProcessorInterface.php
<?php
declare(strict_types=1);
namespace Drupal\smsplatform\Provider;
/**
* Interface for SMS Queue Processor.
*/
interface SmsQueueProcessorInterface {
/**
* Check for messages not in the Drupal queue and add them.
*
* @todo rename?
*/
public function processUnqueued();
/**
* Delete messages which have been processed and are expired.
*/
public function garbageCollection();
}
