Freezerburn / JBacon

A Functional Reactive Programming library inspired by Bacon.js
MIT License
4 stars 0 forks source link

JBacon.fromArray doesn't emit events in order every time #1

Closed Freezerburn closed 11 years ago

Freezerburn commented 11 years ago

Currently due to the way JBacon is designed, where it runs as many things as it possibly can in a concurrent manner, it can submit the array of values given to fromArray in order but the threads might run in a different order. There needs to be a way to synchronize the order of the threads so that the array of values will be reliably emitted in order, while still letting everything else run concurrently and not take (too much of) a performance hit.

Freezerburn commented 11 years ago

This is now fixed