C# Class MassTransit.MessageSchedulerExtensions

显示文件 Open project: MassTransit/MassTransit

Public Methods

Method Description
UseMessageScheduler ( this configurator, Uri schedulerAddress ) : void

Specify an endpoint to use for message scheduling

UsePublishMessageScheduler ( this configurator ) : void

Uses Publish (instead of Send) to schedule messages via the Quartz message scheduler. For this to work, a single queue should be used to schedule all messages. If multiple instances are running, they should be on the same Quartz cluster.

Method Details

UseMessageScheduler() public static method

Specify an endpoint to use for message scheduling
public static UseMessageScheduler ( this configurator, Uri schedulerAddress ) : void
configurator this
schedulerAddress System.Uri
return void

UsePublishMessageScheduler() public static method

Uses Publish (instead of Send) to schedule messages via the Quartz message scheduler. For this to work, a single queue should be used to schedule all messages. If multiple instances are running, they should be on the same Quartz cluster.
public static UsePublishMessageScheduler ( this configurator ) : void
configurator this
return void