modified: classes/logstream.class.php

arrPropertiesOut param is the right one for read operations
This commit is contained in:
Michael Meckelein 2008-03-12 09:39:58 +01:00
parent bcf8c70283
commit 676c702d57

View File

@ -60,20 +60,20 @@ abstract class LogStream {
* changed the original data source.
*
* @param uID integer out: unique id of the data row
* @param logLine string out: data row
* @param arrProperitesOut array out: list with properties
* @return integer Error state
*/
public abstract function ReadNext(&$uID, &$logLine);
public abstract function ReadNext(&$uID, &$arrProperitesOut);
/**
* Read the data from a specific uID.
*
* @param uID integer in: unique id of the data row
* @param logLine string out: data row
* @param arrProperitesOut array out: list with properties
* @return integer Error state
* @see ReadNext()
*/
public abstract function Read($uID, &$logLine);
public abstract function Read($uID, &$arrProperitesOut);
/**
* Set the filter for the current stream.