Recordset
in package
Virtual collection of records retrieved through queries and scans. During a query/scan, multiple threads will retrieve records from the server nodes and put these records on an internal queue managed by the recordset. The single user thread consumes these records from the queue.
Table of Contents
Properties
- $active : mixed
Methods
- close() : mixed
- Drop the stream, which will signal the server and close the recordset
- getActive() : bool
- IsActive returns true if the operation hasn't been finished or cancelled.
- next() : Record|null
- Records is a channel on which the resulting records will be sent back.
Properties
$active
public
mixed
$active
Methods
close()
Drop the stream, which will signal the server and close the recordset
public
close() : mixed
getActive()
IsActive returns true if the operation hasn't been finished or cancelled.
public
getActive() : bool
Return values
boolnext()
Records is a channel on which the resulting records will be sent back.
public
next() : Record|null