DBA Data[Home] [Help]

APPS.WF_EVENT_QH dependencies on WF_EVENT_T

Line 4: * Handles business event messages on queues that use the WF_EVENT_T

1: package WF_EVENT_QH AUTHID CURRENT_USER as
2: /* $Header: wfquhnds.pls 120.2.12020000.3 2013/03/21 13:05:55 skandepu ship $ */
3: /*#
4: * Handles business event messages on queues that use the WF_EVENT_T
5: * datatype as their payload type.
6: * @rep:scope public
7: * @rep:product OWF
8: * @rep:displayname Workflow Event Queue Handler

Line 27: p_event out nocopy wf_event_t,

23: * @rep:compatibility S
24: */
25:
26: PROCEDURE dequeue(p_agent_guid in raw,
27: p_event out nocopy wf_event_t,
28: p_wait in binary_integer default dbms_aq.no_wait);
29: -------------------------------------------------------------------------
30: /*#
31: * Enqueues an event message onto the queue associated with the outbound agent.

Line 41: PROCEDURE enqueue(p_event in wf_event_t,

37: * @rep:lifecycle active
38: * @rep:displayname Enqueue Business Event
39: * @rep:compatibility S
40: */
41: PROCEDURE enqueue(p_event in wf_event_t,
42: p_out_agent_override in wf_agent_t default null);
43: -------------------------------------------------------------------------
44: end WF_EVENT_QH;