C# 클래스 WebApplications.Utilities.Scheduling.ScheduledFunction

Base abstract class.
파일 보기 프로젝트 열기: webappsuk/CoreLibraries 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
ExecutionLock object
Schedule Schedule

공개 메소드들

메소드 설명
ExecuteNow ( ) : ScheduledFunctionResult

Executes the scheduled function now, unless it is already executing, in which case it waits for the result of the current execution.

보호된 메소드들

메소드 설명
ScheduledFunction ( Schedule schedule, System.DateTime startAfter = null ) : System

Initializes a new instance of the ScheduledFunction class.

메소드 상세

ExecuteNow() 공개 추상적인 메소드

Executes the scheduled function now, unless it is already executing, in which case it waits for the result of the current execution.
public abstract ExecuteNow ( ) : ScheduledFunctionResult
리턴 ScheduledFunctionResult

ScheduledFunction() 보호된 메소드

Initializes a new instance of the ScheduledFunction class.
protected ScheduledFunction ( Schedule schedule, System.DateTime startAfter = null ) : System
schedule Schedule The schedule.
startAfter System.DateTime The date time to start after.
리턴 System

프로퍼티 상세

ExecutionLock 공개적으로 프로퍼티

Lock object, which is held during execution of the scheduled function.
public object ExecutionLock
리턴 object

Schedule 공개적으로 프로퍼티

The schedule.
public Schedule,WebApplications.Utilities.Scheduling Schedule
리턴 Schedule