Devin Alexander Torres
Devin Alexander Torres
Yes.
Thanks @stravid, this is exactly what I needed. Months of this bug and I finally found this thread and your workaround after much Google-fu. 🙇
What the hell **is** a `Normal` `EmailType` vs. the alternatives?
@vqvu The highland stream itself so you can continue chaining on the stream.
@vqvu What I mean is this: `h(stream).done(done).pipe().etc()`
@vqvu is there anyway to get a reference to the stream within the function passed to `onDestroy` ? I want to use the chaining API but it seems there are...
Yes, binding the stream to this would be fantastic. I just need a way to reference it in the function without storing a reference to the stream before hand. Right...
@vqvu Do you ever see anybody using async.js and highland.js together? That's what I'm doing now and my desire for `onDestroyWithoutErrors` spawns from my desire to use it at the...
@vqvu Instead of trying do describe what's wrong, let me just show you some concrete code taken straight from my application. ``` js var uploadStream = h(aggregateStream) .batch(self.batchSize) .map(function(chunk) {...
And this is how I **wished** the code could look: ``` js h(aggregateStream) .batch(self.batchSize) .map(function(chunk) { return populate(chunk, { path: 'email', select: 'to -_id' }); }) .flatten() .map(function(r) { return...