DBA Data[Home] [Help]

APPS.WF_ERROR_QH dependencies on WF_EVENT_T

Line 7: p_event out nocopy wf_event_t);

3: -------------------------------------------------------------------------
4: navigation binary_integer := dbms_aq.next_message;
5: -------------------------------------------------------------------------
6: PROCEDURE dequeue(p_agent_guid in raw,
7: p_event out nocopy wf_event_t);
8: -------------------------------------------------------------------------
9: -- Bug 5034154
10: -- Added as a wrapper over the existing dequeue with two parameters
11: PROCEDURE dequeue(p_agent_guid in raw,

Line 12: p_event out nocopy wf_event_t,

8: -------------------------------------------------------------------------
9: -- Bug 5034154
10: -- Added as a wrapper over the existing dequeue with two parameters
11: PROCEDURE dequeue(p_agent_guid in raw,
12: p_event out nocopy wf_event_t,
13: p_wait in binary_integer);
14: -------------------------------------------------------------------------
15: PROCEDURE enqueue(p_event in wf_event_t,
16: p_out_agent_override in wf_agent_t default null);

Line 15: PROCEDURE enqueue(p_event in wf_event_t,

11: PROCEDURE dequeue(p_agent_guid in raw,
12: p_event out nocopy wf_event_t,
13: p_wait in binary_integer);
14: -------------------------------------------------------------------------
15: PROCEDURE enqueue(p_event in wf_event_t,
16: p_out_agent_override in wf_agent_t default null);
17: -------------------------------------------------------------------------
18: end WF_ERROR_QH;