NextIterator

Document Actions
last edited 4 years ago by amehrabyan

description

This part does the iteration process. It gets the starting point of iteration in the "FROM" inpin, the ending point of iteration in the "TO" inpin, the next step of the iteration in the "NEXT" inpin, the step of the iteration in the "BY" inpin, start of the iteration in the "START" inpin and starts firing every iteration in the "OUT" outpin.When the iteration process ends the "END" outpin fires.When firing the "NEXT" pin it checks did the "START" pin fired.If yes then the next iteration firs in the "OUT" pin.

Figure

inpins

  1. FROM - ID = 1 - double
    • Starting point of iteration
  2. TO - ID=2 -double
    • Ending point of iteration
  3. NEXT -ID=3 -no param
    • By firing next inpin the next iteration happens
  4. BY -ID=4 -double
    • This is the size of the step of the iteration
  5. START -ID=5 -no param
    • By firing this inpin the iteration starts

outpins

  1. OUT -ID=51 -double
    • fires the result of the iteration
  2. END -ID=52 -no param
    • fires when the iteration finishes

links to cvs

source - revision 1.0 org.vcb.parts.util.NextIterator.java at sourceforge.net

configuration file revision 1.0 NextIterator.xml at sourceforge.net

status

alpha release