C# 클래스 HandCoded.Framework.Process

The Process class provides a basic process framework. Derived classes extend its functionality and specialise it to a particular task.
파일 보기 프로젝트 열기: formicary/fpml-toolkit-csharp

공개 메소드들

메소드 설명
Run ( ) : void

Causes the Process to process to begin execution.

보호된 메소드들

메소드 설명
CleanUp ( ) : void

Provides a Process with a change to perform any closing actions. This implementation does nothing. Derived classes may extend the functionality.

Execute ( ) : void

The Execute method should perform one program execution cycle. The method is called repeatedly until the finished flag is set.

Process ( ) : System

Constructs a Process instance.

StartUp ( ) : void

Provides a Process with a chance to perform any initialisation. This implementation does nothing. Derived classes may extend the functionality.

메소드 상세

CleanUp() 보호된 메소드

Provides a Process with a change to perform any closing actions. This implementation does nothing. Derived classes may extend the functionality.
protected CleanUp ( ) : void
리턴 void

Execute() 보호된 추상적인 메소드

The Execute method should perform one program execution cycle. The method is called repeatedly until the finished flag is set.
protected abstract Execute ( ) : void
리턴 void

Process() 보호된 메소드

Constructs a Process instance.
protected Process ( ) : System
리턴 System

Run() 공개 메소드

Causes the Process to process to begin execution.
public Run ( ) : void
리턴 void

StartUp() 보호된 메소드

Provides a Process with a chance to perform any initialisation. This implementation does nothing. Derived classes may extend the functionality.
protected StartUp ( ) : void
리턴 void