'Declaration Public Overloads Shared Function CreateQueue( _ ByVal name As String, _ ByVal multipleConsumers As Boolean, _ ByVal comment As String, _ ByVal connection As OracleConnection _ ) As OracleQueue
public static OracleQueue CreateQueue( string name, bool multipleConsumers, string comment, OracleConnection connection )
Parameters
- name
- Unique name of the queue to be created.
- multipleConsumers
- FALSE means queues created in the table can only have one consumer for each message. TRUE means queues created in the table can have multiple consumers for each message.
- comment
- User-specified description of the queue.
- connection
- An OracleConnection to the Oracle server, which provides the AQ functionality.
Return Value
Returns OracleQueue instance, which corresponds to the queue created on a server.