C# Класс BlueCollar.Job

Base IJob implementation.
Наследование: IJob
Показать файл Открыть проект

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