C# 클래스 Summer.Batch.Core.Configuration.Support.MapStepRegistry

Simple dictionary-based implementation of IStepRegistry. Access to the dictionary is synchronized, guarded by an internal lock.
상속: IStepRegistry
파일 보기 프로젝트 열기: SummerBatch/SummerBatch

공개 메소드들

메소드 설명
GetStep ( string jobName, string stepName ) : IStep

Returns the IStep of the specified job based on its name.

Register ( string jobName, ICollection steps ) : void

Registers all the step of the given job. If the job is already registered, the method UnregisterStepFromJob is called before registering the given steps.

UnregisterStepFromJob ( string jobName ) : void

Unregisters all the steps of the given job. If the job is not registered, nothing happens.

메소드 상세

GetStep() 공개 메소드

Returns the IStep of the specified job based on its name.
  no such job with that name exists   no such step with that name for that job exists
public GetStep ( string jobName, string stepName ) : IStep
jobName string the name of the job
stepName string the name of the step to retrieve
리턴 IStep

Register() 공개 메소드

Registers all the step of the given job. If the job is already registered, the method UnregisterStepFromJob is called before registering the given steps.
  if a job with the same job name has already been registered.
public Register ( string jobName, ICollection steps ) : void
jobName string the given job name
steps ICollection the job steps
리턴 void

UnregisterStepFromJob() 공개 메소드

Unregisters all the steps of the given job. If the job is not registered, nothing happens.
public UnregisterStepFromJob ( string jobName ) : void
jobName string the given job name
리턴 void