芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/lib/Storage/TimeSeriesResultsInterface.php
. */ namespace Xibo\Storage; /** * Interface TimeSeriesResultsInterface * @package Xibo\Service */ interface TimeSeriesResultsInterface { /** * Time series results constructor */ public function __construct($object = null); /** * Get statistics array * @return array[array statData] */ public function getArray(); /** * Get next row * @return array|false */ public function getNextRow(); /** * Get total number of stats * @return integer */ public function getTotalCount(); }