I dont think i can access that folder.. im checking. But I asked because the sample that it points to, uses Brainscript...
UPDATE: i found the samples, and these also still use brain script... is this correct? Shouldnt these have been updated like other nodes?
# Set condition to true on the first pass
if (firstExec) then condition = true
#Increment count by 1
emit 'count' + 1 as count
# check if the condition is matched
condition = condition and (20 > 'count')
# After all records are processed, check if the condition is still true.
if (lastInGroup and condition) then {
# If the condition is still true, set returnCode 101 to
# reschedule the node and continue iteration.
setSuccessReturnCode(101)
}