文件名称:pipeline:用于链接数据处理的双向管道(类似于流)
文件大小:14KB
文件格式:ZIP
更新时间:2024-05-18 11:12:20
JavaScript
加工管道 用法 let pipeline = new Pipeline ( ) ; let firstLayer = { request : function ( input ) { // cannot handle the request if ( input . value !== 'foo' ) { input . next ( ) ; } input . resolve ( 'foo' ) ; } , response : function ( value ) { return 'the ' + value ; } } ; let secondLayer = { request : function ( input ) { // handle the request input . resolve ( 'response' ) ; }
【文件预览】:
pipeline-master
----.jshintrc(142B)
----.gitignore(29B)
----.jsbeautifyrc(110B)
----package.json(847B)
----Makefile(281B)
----src()
--------Pipeline.js(4KB)
----karma.conf.js(529B)
----.bowerrc(26B)
----babel-options.js(20B)
----gulpfile.js(1014B)
----dist()
--------jspipe.js(6KB)
--------jspipe.min.js(2KB)
----promise.min.js(18KB)
----README.md(727B)
----build.template.js(350B)
----bower.json(668B)
----test()
--------Pipeline.spec.js(7KB)
----karma.coverage.js(469B)