ThrottlePasses Constructor (Int32, TimeSpan, Composite) |
Implements a 'throttle' composite. This composite limits the number of times the child
will be run within a given time span. Returns Failure for attempts after limit reached,
otherwise returns result of child
Namespace:
ff14bot.Behavior
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public ThrottlePasses(
int Limit,
TimeSpan ts,
Composite child
)
Parameters
- Limit
- Type: SystemInt32
max number of occurrences - ts
- Type: SystemTimeSpan
time span for occurrences in seconds - child
- Type: TreeSharpComposite
composite children to tick (run)
See Also