C# 클래스 BlueCollar.Job

Base IJob implementation.
상속: IJob
파일 보기 프로젝트 열기: ChadBurggraf/blue-collar

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Enqueue ( ) : void

Enqueues the job using the currently configured application name on the default queue.

Enqueue ( string queueName ) : void

Enqueues this job using the currently configured application name and the given queue name.

Enqueue ( string applicationName, string queueName ) : void

Enqueues a job for the given application name and queue name.

Enqueue ( string applicationName, string queueName, IRepository repository ) : void

Enqueues a job for the given application name and queue name.

Execute ( ) : void

Executes the job.

메소드 상세

Enqueue() 공개 메소드

Enqueues the job using the currently configured application name on the default queue.
public Enqueue ( ) : void
리턴 void

Enqueue() 공개 메소드

Enqueues this job using the currently configured application name and the given queue name.
public Enqueue ( string queueName ) : void
queueName string The name of the queue to enqueue the job on, or null for the default queue.
리턴 void

Enqueue() 공개 메소드

Enqueues a job for the given application name and queue name.
public Enqueue ( string applicationName, string queueName ) : void
applicationName string The name of the application to enqueue the job for.
queueName string The name of the queue to enqueue the job on, or null for the default queue.
리턴 void

Enqueue() 공개 메소드

Enqueues a job for the given application name and queue name.
public Enqueue ( string applicationName, string queueName, IRepository repository ) : void
applicationName string The name of the application to enqueue the job for.
queueName string The name of the queue to enqueue the job on, or null for the default queue.
repository IRepository The repository to use when enqueueing the job record.
리턴 void

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

Executes the job.
public abstract Execute ( ) : void
리턴 void