dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleQueueTableOptions Class / OracleQueueTableOptions Constructor / OracleQueueTableOptions Constructor(String,String,OracleQueueSortOrder,Boolean,OracleQueueMessageGrouping,String,OracleQueueCompatible,Int32,Int32,Boolean)
Type of the user data stored, either user-defined type or RAW.
The storage parameter included to the CREATE TABLE statement.
Specifies which properties are used to order messages in the queue. Default value is Ascending.
Specifies whether the queues created in the table can have multiple consumers.
Specifies the message grouping behaviour.
The user-defined description of the table.
The lowest database version with which the queue is compatible.
The primary Oracle instance which will be used to operate the table. 0 to use any available instance.
The secondary Oracle instance which will be used to operate the table when the primary instance is unavailable. 0 to use any available instance.
Specifies whether the queue table is used for secure queues. If true, AQ agents must be associated explicitly with one or more database users who can perform queue operations, such as enqueue or dequeue.

In This Topic
    OracleQueueTableOptions Constructor(String,String,OracleQueueSortOrder,Boolean,OracleQueueMessageGrouping,String,OracleQueueCompatible,Int32,Int32,Boolean)
    In This Topic
    Initializes a new instance of the OracleQueueTableOptions class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal payloadTypeName As String, _
       ByVal storageClause As String, _
       ByVal sortOrder As OracleQueueSortOrder, _
       ByVal multipleConsumers As Boolean, _
       ByVal messageGrouping As OracleQueueMessageGrouping, _
       ByVal comment As String, _
       ByVal compatible As OracleQueueCompatible, _
       ByVal primaryInstance As Integer, _
       ByVal secondaryInstance As Integer, _
       ByVal secure As Boolean _
    )

    Parameters

    payloadTypeName
    Type of the user data stored, either user-defined type or RAW.
    storageClause
    The storage parameter included to the CREATE TABLE statement.
    sortOrder
    Specifies which properties are used to order messages in the queue. Default value is Ascending.
    multipleConsumers
    Specifies whether the queues created in the table can have multiple consumers.
    messageGrouping
    Specifies the message grouping behaviour.
    comment
    The user-defined description of the table.
    compatible
    The lowest database version with which the queue is compatible.
    primaryInstance
    The primary Oracle instance which will be used to operate the table. 0 to use any available instance.
    secondaryInstance
    The secondary Oracle instance which will be used to operate the table when the primary instance is unavailable. 0 to use any available instance.
    secure
    Specifies whether the queue table is used for secure queues. If true, AQ agents must be associated explicitly with one or more database users who can perform queue operations, such as enqueue or dequeue.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also