DBA Data[Home] [Help]

APPS.WF_EVENT dependencies on DBMS_AQ

Line 8: navigation binary_integer := dbms_aq.first_message;

4: * Provides APIs to communicate with the Business Event System and manage
5: * events.
6: */
7: ------------------------------------------------------------------------------
8: navigation binary_integer := dbms_aq.first_message;
9:
10: ------------------------------------------------------------------------------
11: /*
12: ** exception source indicator - used by dispatch and listen (NONE | WF | RULE)

Line 186: x_message_properties in out nocopy dbms_aq.message_properties_t);

182: */
183: PROCEDURE Set_Recipient_List(p_event in wf_event_t,
184: p_out_agent_name in varchar2,
185: p_out_system_name in varchar2,
186: x_message_properties in out nocopy dbms_aq.message_properties_t);
187: /*
188: ** newAgent - Construct a wf_agent_t from a guid
189: */
190: /*#

Line 296: p_wait in binary_integer default dbms_aq.no_wait,

292: * @param p_correlation Correlation ID
293: * @param p_deq_condition Dequeue Condition
294: */
295: PROCEDURE listen(p_agent_name in varchar2,
296: p_wait in binary_integer default dbms_aq.no_wait,
297: p_correlation in varchar2 default null,
298: p_deq_condition in varchar2 default null);
299: ---------------------------------------------------------------------------
300: /*

Line 316: p_wait in binary_integer default dbms_aq.no_wait,

312: * @param p_message_count maximum count of messages to be processed
313: * @param p_max_error_count maximum number of errors tolerated.
314: */
315: PROCEDURE listen(p_agent_name in varchar2,
316: p_wait in binary_integer default dbms_aq.no_wait,
317: p_correlation in varchar2 default null,
318: p_deq_condition in varchar2 default null,
319: p_message_count in out nocopy number,
320: p_max_error_count in out nocopy number);

Line 334: p_wait in binary_integer default dbms_aq.no_wait

330: retcode out nocopy varchar2,
331: p_agent_name in varchar2,
332: p_correlation in varchar2 default null,
333: p_deq_condition in varchar2 default null,
334: p_wait in binary_integer default dbms_aq.no_wait
335: );
336: ---------------------------------------------------------------------------
337: /*
338: ** listen_grp - dequeues and dispatches all events currently enqueued

Line 352: p_wait in binary_integer default dbms_aq.no_wait);

348: **
349: **
350: */
351: PROCEDURE listen_grp(p_agent_name in varchar2,
352: p_wait in binary_integer default dbms_aq.no_wait);
353: ---------------------------------------------------------------------------
354: /*
355: ** listen__grp_concurrent - This is a cover of listen_grp() that can be used
356: ** by the Concurrent Manager.

Line 373: p_wait in binary_integer default dbms_aq.no_wait,

369: */
370: PROCEDURE dequeue(p_agent_guid in raw,
371: p_event out nocopy wf_event_t,
372: p_queue_handler in out nocopy varchar2,
373: p_wait in binary_integer default dbms_aq.no_wait,
374: p_correlation in varchar2 default null,
375: p_deq_condition in varchar2 default null);
376: ---------------------------------------------------------------------------
377: /*