Files
piratepoet/lib/Queue/Queue.php
2015-11-20 16:20:35 -05:00

31 lines
422 B
PHP

<?php
namespace MailPoet\Queue;
if(!defined('ABSPATH')) exit;
class Queue {
function __construct() {
}
function create() {
}
function startQueue() {
/* ignore_user_abort();
set_time_limit(0);
header('Connection: close');
header('X-MailPoet-Queue: started');
ob_end_flush();
ob_flush();
flush();*/
}
function process() {
}
function pause() {
}
function stop() {
}
}