CIRCNetwork.isRunningList Member
Syntax
object.isRunningList();
Returns
Remarks
See Also
Source Code
function my_running_list()
{
/* The list is considered "running" when a cancel is effective. This means
* that even if _list.done is true (finished recieving data), we will still
* be "running" whilst we have undisplayed items.
*/
return (("_list" in this) &&
(!this._list.done || (this._list.length > this._list.displayed)) &&
!this._list.cancelled);
}