C# Class DotNetWorkQueue.Configuration.HeartBeatConfiguration

The heartbeat configuration settings The queue can 'ping' a record that is being processed and keep it alive. This allows for automatic recovery of records in which the processor has died and records are stuck in a processing state.
Inheritance: IHeartBeatConfiguration
ファイルを表示 Open project: blehnen/DotNetWorkQueue

Public Methods

Method Description
HeartBeatConfiguration ( TransportConfigurationReceive transportConfiguration, IHeartBeatThreadPoolConfiguration threadPoolConfiguration ) : System

Initializes a new instance of the HeartBeatConfiguration class.

SetReadOnly ( ) : void

Marks this instance as immutable

Protected Methods

Method Description
FailIfReadOnly ( ) : void

Throws an exception if the read-only flag is true.

Method Details

FailIfReadOnly() protected method

Throws an exception if the read-only flag is true.
protected FailIfReadOnly ( ) : void
return void

HeartBeatConfiguration() public method

Initializes a new instance of the HeartBeatConfiguration class.
public HeartBeatConfiguration ( TransportConfigurationReceive transportConfiguration, IHeartBeatThreadPoolConfiguration threadPoolConfiguration ) : System
transportConfiguration TransportConfigurationReceive The transport configuration.
threadPoolConfiguration IHeartBeatThreadPoolConfiguration The thread pool configuration.
return System

SetReadOnly() public method

Marks this instance as immutable
public SetReadOnly ( ) : void
return void