C# Класс HandCoded.Framework.Process

The Process class provides a basic process framework. Derived classes extend its functionality and specialise it to a particular task.
Показать файл Открыть проект

Открытые методы

Метод Описание
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