C# Class DotNetWorkQueue.Transport.SQLite.Basic.SqLiteMessageQueueSchema

Defines the schema for a queue
Exibir arquivo Open project: blehnen/DotNetWorkQueue Class Usage Examples

Public Methods

Method Description
GetSchema ( ) : List

Returns our schema as a list of tables.

SqLiteMessageQueueSchema ( TableNameHelper tableNameHelper, ISqLiteMessageQueueTransportOptionsFactory options ) : System

Initializes a new instance of the SqLiteMessageQueueSchema class.

Private Methods

Method Description
CreateConfigurationTable ( ) : Table

Creates the configuration table schema.

CreateErrorTable ( Table meta ) : Table

Creates the error table schema. This is a copy of the meta table, but with an exception column added.

CreateErrorTrackingTable ( ) : Table

Creates the error tracking table schema.

CreateMainTable ( ) : Table

Creates the main table schema

CreateMetaDataTable ( ) : Table

Creates the meta data table schema.

CreateStatusTable ( ) : Table

Method Details

GetSchema() public method

Returns our schema as a list of tables.
public GetSchema ( ) : List
return List

SqLiteMessageQueueSchema() public method

Initializes a new instance of the SqLiteMessageQueueSchema class.
public SqLiteMessageQueueSchema ( TableNameHelper tableNameHelper, ISqLiteMessageQueueTransportOptionsFactory options ) : System
tableNameHelper TableNameHelper The table name helper.
options ISqLiteMessageQueueTransportOptionsFactory The options.
return System