node의 흐름 대상 학습 (읽기 흐름과 쓰기 흐름)

1577 단어 node
자세히 보기
여전히 지난번의 수열로 이루어졌다.
이번에는 읽기 대상과 쓰기 대상을 포함한다.
모든 코드


/**
 *            
 * 
 * @author yyy
 */
var stream=require('stream');
var util=require('util');

// --------------        -----------------
function StreamChildRead(n)
{
    this.a=0;
    this.b=1;
    this.n = n;
    stream.Readable.call(this);
}
util.inherits(StreamChildRead, stream.Readable );

//        
StreamChildRead.prototype._read = function(){
    this.push( this.a.toString());
    this.push(  this.b.toString());
    
    for(let i=2;i<= this.n+1-2;i++) {
      [this.a, this.b] = [this.b, this.a+this.b];
      this.push( `${this.b}`  );
    }
    this.push(null);
};

// ---------------         --------------

function StreamChildWrite()
{
    this.count=0;
    stream.Writable.call(this);
}
util.inherits(StreamChildWrite, stream.Writable );

//        
StreamChildWrite.prototype._write = function(chunk,encoding,callback){
   process.stdout.write( ('f('+ this.count++) +"):"+ chunk.toString()+'
'); callback(); }; (new StreamChildRead(10)).pipe(new StreamChildWrite());

출력은 다음과 같습니다.

f(0):0
f(1):1
f(2):1
f(3):2
f(4):3
f(5):5
f(6):8
f(7):13
f(8):21
f(9):34

좋은 웹페이지 즐겨찾기