public static final class OracleDSL.DBMS_AQ
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
OracleDSL.DBMS_AQ.DELIVERY_MODE
A flag corresponding to
DBMS_AQ.DEQUEUE_OPTIONS_T.DELIVERY_MODE and to
DBMS_AQ.ENQUEUE_OPTIONS_T.DELIVERY_MODE . |
static class |
OracleDSL.DBMS_AQ.DEQUEUE_MODE
A flag corresponding to
DBMS_AQ.DEQUEUE_OPTIONS_T.DEQUEUE_MODE . |
static class |
OracleDSL.DBMS_AQ.DEQUEUE_OPTIONS_T
A
RECORD corresponding to DBMS_AQ.DEQUEUE_OPTIONS_T . |
static class |
OracleDSL.DBMS_AQ.ENQUEUE_OPTIONS_T
A
RECORD corresponding to DBMS_AQ.ENQUEUE_OPTIONS_T . |
static class |
OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T
A
RECORD corresponding to DBMS_AQ.MESSAGE_PROPERTIES_T . |
static class |
OracleDSL.DBMS_AQ.NAVIGATION
A flag corresponding to
DBMS_AQ.DEQUEUE_OPTIONS_T.NAVIGATION . |
static class |
OracleDSL.DBMS_AQ.SEQUENCE_DEVIATION
A flag corresponding to
DBMS_AQ.ENQUEUE_OPTIONS_T.SEQUENCE_DEVIATION . |
static class |
OracleDSL.DBMS_AQ.VISIBILITY
A flag corresponding to
DBMS_AQ.DEQUEUE_OPTIONS_T.VISIBILITY and to
DBMS_AQ.ENQUEUE_OPTIONS_T.VISIBILITY . |
static class |
OracleDSL.DBMS_AQ.WAIT
A flag corresponding to
DBMS_AQ.DEQUEUE_OPTIONS_T.WAIT . |
Modifier and Type | Method and Description |
---|---|
static <R extends UDTRecord<R>> |
dequeue(Configuration configuration,
Queue<R> queue)
Dequeue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
dequeue(Configuration configuration,
Queue<R> queue,
OracleDSL.DBMS_AQ.DEQUEUE_OPTIONS_T options,
OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
Dequeue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
enqueue(Configuration configuration,
Queue<R> queue,
R payload)
Enqueue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
enqueue(Configuration configuration,
Queue<R> queue,
R payload,
OracleDSL.DBMS_AQ.ENQUEUE_OPTIONS_T options,
OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
Enqueue a message in an Oracle AQ.
|
public static <R extends UDTRecord<R>> void enqueue(Configuration configuration, Queue<R> queue, R payload)
configuration
- The configuration from which to get a connection.queue
- The queue reference.payload
- The message payload.public static <R extends UDTRecord<R>> void enqueue(Configuration configuration, Queue<R> queue, R payload, OracleDSL.DBMS_AQ.ENQUEUE_OPTIONS_T options, OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
configuration
- The configuration from which to get a connection.queue
- The queue reference.payload
- The message payload.options
- The enqueue options.properties
- The message properties.public static <R extends UDTRecord<R>> R dequeue(Configuration configuration, Queue<R> queue)
configuration
- The configuration from which to get a connection.queue
- The queue reference.public static <R extends UDTRecord<R>> R dequeue(Configuration configuration, Queue<R> queue, OracleDSL.DBMS_AQ.DEQUEUE_OPTIONS_T options, OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
configuration
- The configuration from which to get a connection.queue
- The queue reference.options
- The dequeue options.properties
- The message properties.Copyright © 2014. All Rights Reserved.