C# 클래스 Deeply.ConsoleExecutionLog

Console Execution Log implementation.
상속: IExecutionLog
파일 보기 프로젝트 열기: jsnape/deeply

공개 메소드들

메소드 설명
ReportProgress ( ITask task, string message, int percentComplete ) : void

Called regularly during task execution to report progress.

TaskFailed ( ITask task, string reason ) : void

Called when a task execution fails.

TaskStarted ( ITask task ) : void

Called when a task starts.

TaskSucceeded ( ITask task ) : void

Called when a task has finished execution successfully.

메소드 상세

ReportProgress() 공개 메소드

Called regularly during task execution to report progress.
public ReportProgress ( ITask task, string message, int percentComplete ) : void
task ITask The task.
message string A message of progress.
percentComplete int An estimation of percent complete.
리턴 void

TaskFailed() 공개 메소드

Called when a task execution fails.
public TaskFailed ( ITask task, string reason ) : void
task ITask The task.
reason string Task failure reason.
리턴 void

TaskStarted() 공개 메소드

Called when a task starts.
public TaskStarted ( ITask task ) : void
task ITask The task.
리턴 void

TaskSucceeded() 공개 메소드

Called when a task has finished execution successfully.
public TaskSucceeded ( ITask task ) : void
task ITask The task.
리턴 void