-
Notifications
You must be signed in to change notification settings - Fork 36
Doc functions
Bart van Hoekelen edited this page Sep 14, 2017
·
2 revisions
- Performance::point()
- Performance::message()
- Performance::finish()
- Performance::export()
- Performance::results()
Set measuring point with or without a label
Performance::point( <optional:$label>, <optional:$isMultiplePoint> );
Item | Type | Optional | Default | Explanation |
---|---|---|---|---|
$label | String | No | Enter point label | |
$isMultiplePoint | Boolean | Yes | False |
Is multiple point (TRUE) or is not (FALSE) |
Set a message associated with the point
Performance::message( <$message>, <optional:$newLine>);
Item | Type | Optional | Default | Explanation |
---|---|---|---|---|
$message | String | No | Enter message | |
$newLine | Boolean | Yes | True |
Massage on new line (TRUE) or on same line (FALSE) |
Finish previous measuring point
Performance::finish( <optional:$multiplePointLabel> );
Item | Type | Optional | Default | Explanation |
---|---|---|---|---|
$multiplePointLabel | String | Yes | Null |
Enter multiple point label to finish or finish current normal point |
Return the export helper only
Performance::export();
Finish all measuring points and return the export helper
Performance::results();
Return to wiki home page