C# Класс DotNetWorkQueue.Transport.Redis.Basic.RedisSendJobToQueue

Sends a job to a queue
Наследование: ASendJobToQueue
Показать файл Открыть проект

Открытые методы

Метод Описание
RedisSendJobToQueue ( IProducerMethodQueue queue, QueueStatuses>.IQueryHandler doesJobExist, bool>.ICommandHandlerWithOutput deleteMessageCommand, string>.IQueryHandler getJobId, IGetTimeFactory getTimeFactory, IJobSchedulerMetaData jobSchedulerMetaData ) : System

Initializes a new instance of the RedisSendJobToQueue class.

Защищенные методы

Метод Описание
DeleteJob ( string name ) : void

Deletes the job based on the job name.

DoesJobExist ( string name, DateTimeOffset scheduledTime ) : QueueStatuses

Returns the status of the job based on name and scheduled time.

JobAlreadyExistsError ( Exception error ) : bool

Return true if the exception indicates that the job already exists.

Used to determine if we should return specific error messages

SetMetaDataForJob ( string jobName, DateTimeOffset scheduledTime, DateTimeOffset eventTime, string route, IAdditionalMessageData messageData ) : void

Sets the specified meta data on the messageData context

Описание методов

DeleteJob() защищенный Метод

Deletes the job based on the job name.
protected DeleteJob ( string name ) : void
name string The name.
Результат void

DoesJobExist() защищенный Метод

Returns the status of the job based on name and scheduled time.
protected DoesJobExist ( string name, DateTimeOffset scheduledTime ) : QueueStatuses
name string The name.
scheduledTime DateTimeOffset The scheduled time.
Результат QueueStatuses

JobAlreadyExistsError() защищенный Метод

Return true if the exception indicates that the job already exists.
Used to determine if we should return specific error messages
protected JobAlreadyExistsError ( Exception error ) : bool
error System.Exception The error.
Результат bool

RedisSendJobToQueue() публичный Метод

Initializes a new instance of the RedisSendJobToQueue class.
public RedisSendJobToQueue ( IProducerMethodQueue queue, QueueStatuses>.IQueryHandler doesJobExist, bool>.ICommandHandlerWithOutput deleteMessageCommand, string>.IQueryHandler getJobId, IGetTimeFactory getTimeFactory, IJobSchedulerMetaData jobSchedulerMetaData ) : System
queue IProducerMethodQueue The queue.
doesJobExist QueueStatuses>.IQueryHandler Query for determining if a job already exists
deleteMessageCommand bool>.ICommandHandlerWithOutput The delete message command.
getJobId string>.IQueryHandler The get job identifier.
getTimeFactory IGetTimeFactory The get time factory.
jobSchedulerMetaData IJobSchedulerMetaData The job scheduler meta data.
Результат System

SetMetaDataForJob() защищенный Метод

Sets the specified meta data on the messageData context
protected SetMetaDataForJob ( string jobName, DateTimeOffset scheduledTime, DateTimeOffset eventTime, string route, IAdditionalMessageData messageData ) : void
jobName string Name of the job.
scheduledTime DateTimeOffset The scheduled time.
eventTime DateTimeOffset The event time.
route string The route. May be null.
messageData IAdditionalMessageData The message data.
Результат void