egroupware/phpgwapi/inc/class.asyncservice.inc.php

23 lines
564 B
PHP
Raw Normal View History

2003-04-28 01:19:49 +02:00
<?php
/**
* EGroupware API - Timed Asynchron Services
*
* @link http://www.egroupware.org
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright Ralf Becker <RalfBecker-AT-outdoor-training.de>
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api
* @access public
* @version $Id$
*/
2016-04-06 21:27:47 +02:00
use EGroupware\Api;
/**
* The class implements a general eGW service to execute callbacks at a given time.
*
2016-04-06 21:27:47 +02:00
* @deprecated use Api\AsyncService
*/
2016-04-06 21:27:47 +02:00
class asyncservice extends Api\Asyncservice {}