|
|
ibi Patterns .NET API
|
Loading...
Searching...
No Matches
NetricsServerInterface.NetricsArrayRecSrc Class Reference
A simple array based implementation of the NetricsTableRecSrc interface. More...
Public Member Functions |
|
| NetricsArrayRecSrc () | |
| Build an empty record source. |
|
| override bool | hasNext () |
| As described for the interface. |
|
| override NetricsRecord | getNext () |
| As described for the interface. |
|
| void | addRecord (NetricsRecord rec) |
| Use this method to add records to the record source. |
|
| override void | reset () |
| As described for the interface. |
|
| abstract NetricsRecord | getNext () |
| Returns the next record. |
|
| abstract bool | hasNext () |
| Returns true if the source has more records. |
|
| abstract void | reset () |
| Reset the source to the first record. |
|
| bool | hasNext () |
| Returns true if the source has more records. |
|
| NetricsBaseRecord | getNext () |
| Returns the next record. |
|
| void | reset () |
| Reset the source to the first record. |
|
Detailed Description
A simple array based implementation of the NetricsTableRecSrc interface.
- See also
- NetricsTableRecSrc
Constructor & Destructor Documentation
◆ NetricsArrayRecSrc()
|
inline |
Build an empty record source.
You must use the addRecord method to put records into this record source.
Member Function Documentation
◆ addRecord()
|
inline |
Use this method to add records to the record source.
The records will be stored and returned in the order they are added.