You are here

SmsQueueProcessorInterface.php in SMS Framework 8

File

src/Provider/SmsQueueProcessorInterface.php
View source
<?php

namespace Drupal\sms\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();

}

Interfaces

Namesort descending Description
SmsQueueProcessorInterface Interface for SMS Queue Processor.