-
Notifications
You must be signed in to change notification settings - Fork 14
TriggerFrameworkLoopCount
codefriar edited this page Oct 5, 2023
·
2 revisions
STATUS: ACTIVE
inner class for managing the loop count per handler
Loop counter method with default of 5.
Sets loop count based on the param.
| Param | Description |
|---|---|
max |
Maximum number of loops to allow. |
Increment the internal counter returning the results of this.exceeded().
| Type | Description |
|---|---|
| Boolean |
Boolean true if count will exceed max count or is less than 0. |
Determines if this we're about to exceed the loop count.
| Type | Description |
|---|---|
| Boolean |
Boolean true if less than 0 or more than max. |
Returns the max loop count.
| Type | Description |
|---|---|
| Integer |
Integer max loop count. |
Returns the current loop count.
| Type | Description |
|---|---|
| Integer |
Integer current loop count. |
Sets the max loop size
| Param | Description |
|---|---|
max |
The integer to set max to. |