C# Class NSoft.NFramework.JobScheduler.JobTool

Mostra file Open project: debop/NFramework

Public Methods

Method Description
GetJobData ( this context, object key ) : object

Job 상태정보를 담은 JobDataMap에서 해당 키의 값을 반환합니다. 없으면, null을 반환합니다.

ScheduleServiceJob ( this scheduler ) : void

Scheduler에 IServiceJob들을 스케쥴링합니다.

SetJobData ( this serviceJob, IDictionary dictionary ) : void

특정 Job의 상태 정보를 설정합니다.

SetJobData ( this serviceJob, object key, object value ) : void

Job 상태정보를 담은 JobDataMap에서 해당 키에 값을 설정합니다.

Method Details

GetJobData() public static method

Job 상태정보를 담은 JobDataMap에서 해당 키의 값을 반환합니다. 없으면, null을 반환합니다.
public static GetJobData ( this context, object key ) : object
context this
key object
return object

ScheduleServiceJob() public static method

Scheduler에 IServiceJob들을 스케쥴링합니다.
public static ScheduleServiceJob ( this scheduler ) : void
scheduler this
return void

SetJobData() public static method

특정 Job의 상태 정보를 설정합니다.
public static SetJobData ( this serviceJob, IDictionary dictionary ) : void
serviceJob this
dictionary IDictionary
return void

SetJobData() public static method

Job 상태정보를 담은 JobDataMap에서 해당 키에 값을 설정합니다.
public static SetJobData ( this serviceJob, object key, object value ) : void
serviceJob this
key object
value object
return void