C# 클래스 BitOrchestra.BufferedEvaluator

An evaluator that stores results from a source evaluator in a buffer.
상속: Evaluator
파일 보기 프로젝트 열기: dzamkov/Bit-Orchestra 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Buffer Value[]
Source Evaluator

공개 메소드들

메소드 설명
BufferedEvaluator ( int BufferSize, Evaluator Source ) : System
Generate ( Int32 Start ) : Value[]

Generates the values of the evaluator starting at the given offset and returns them as a buffer.

Generate ( Int32 Start, Int32 Buffer ) : void
Invalidate ( ) : void

메소드 상세

BufferedEvaluator() 공개 메소드

public BufferedEvaluator ( int BufferSize, Evaluator Source ) : System
BufferSize int
Source Evaluator
리턴 System

Generate() 공개 메소드

Generates the values of the evaluator starting at the given offset and returns them as a buffer.
public Generate ( Int32 Start ) : Value[]
Start System.Int32
리턴 Value[]

Generate() 공개 메소드

public Generate ( Int32 Start, Int32 Buffer ) : void
Start System.Int32
Buffer System.Int32
리턴 void

Invalidate() 공개 메소드

public Invalidate ( ) : void
리턴 void

프로퍼티 상세

Buffer 공개적으로 프로퍼티

The buffer for this evaluator.
public Value[] Buffer
리턴 Value[]

Source 공개적으로 프로퍼티

The source evaluator for this buffered evaluator.
public Evaluator,BitOrchestra Source
리턴 Evaluator