C# Класс WordCounter.Actors.WordCounterActor

Наследование: BaseMonitoringActor
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetProps ( ) : Props
Handle ( FailureMessage fail ) : void
Handle ( FileToProcess message ) : void

Handle file processing message. Actor will count one file.

Handle ( WordCount message ) : void

This message is sent by the StringCounter Actor when it finishes with one line. When all lines counted then it will send a CompletedFile message to its parent and stop itself.

WordCounterActor ( ) : System

Initializes a new instance of the WordCounterActor class.

Защищенные методы

Метод Описание
PreRestart ( Exception reason, object message ) : void

Приватные методы

Метод Описание
Ready ( ) : void

Описание методов

GetProps() публичный статический Метод

public static GetProps ( ) : Props
Результат Props

Handle() публичный Метод

public Handle ( FailureMessage fail ) : void
fail WordCounter.Messages.FailureMessage
Результат void

Handle() публичный Метод

Handle file processing message. Actor will count one file.
public Handle ( FileToProcess message ) : void
message WordCounter.Messages.FileToProcess
Результат void

Handle() публичный Метод

This message is sent by the StringCounter Actor when it finishes with one line. When all lines counted then it will send a CompletedFile message to its parent and stop itself.
public Handle ( WordCount message ) : void
message WordCounter.Messages.WordCount
Результат void

PreRestart() защищенный Метод

protected PreRestart ( Exception reason, object message ) : void
reason System.Exception
message object
Результат void

WordCounterActor() публичный Метод

Initializes a new instance of the WordCounterActor class.
public WordCounterActor ( ) : System
Результат System