<@U1EEE6BST>: the fact that oneAtATime receives as...
# getting-started
c
@brianwernick: the fact that oneAtATime receives as param a function called next which receives a
T
object & another function called
more
. Then function
next
is called like
Copy code
next(t) {
                request(1)
            }
`instead of the classic
Copy code
next(t,{request(1)})
All this together confuses me. I guess i will get used to it.