Package Exports
- pull-defer
- pull-defer/duplex
- pull-defer/sink
- pull-defer/source
- pull-defer/through
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pull-defer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pull-defer
create a placeholder for a pull stream that won't start moving until later.
examples
pull-defer
can be used with source, sinks and transform streams.
through
//create a deferred through stream
var deferred = require('pull-defer').through()
pull(
input,
deferred,
output
)
//nothing will happen until deferred.resolve(stream) is called.
deferred.resolve(transform)
source
//create a deferred through stream
var deferred = require('pull-defer').source()
pull(
deferred,
output
)
//nothing will happen until deferred.resolve(stream) is called.
deferred.resolve(input)
sink
//create a deferred through stream
var deferred = require('pull-defer').sink()
pull(
input,
deferred
)
//nothing will happen until deferred.start(stream) is called.
deferred.resolve(output)
License
MIT