DBA Data[Home] [Help]

APPS.WF_EVENT_OJMSTEXT_QH dependencies on WF_EVENT_T

Line 38: procedure enqueue(p_event in wf_event_t,

34: * @rep:lifecycle active
35: * @rep:displayname Enqueue Business Event
36: * @rep:compatibility S
37: */
38: procedure enqueue(p_event in wf_event_t,
39: p_out_agent_override in wf_agent_t default null);
40:
41: --------------------------------------------------------------------------------
42: -- Dequeues a business event from a JMS queue.

Line 60: p_event out nocopy wf_event_t,

56: * @rep:displayname Dequeue Business Event
57: * @rep:compatibility S
58: */
59: procedure dequeue(p_agent_guid in raw,
60: p_event out nocopy wf_event_t,
61: p_wait in binary_integer default dbms_aq.no_wait);
62:
63: --------------------------------------------------------------------------------
64: -- Tranforms a business event into a JMS Text Message.

Line 78: procedure serialize(p_event in wf_event_t,

74: * @rep:lifecycle active
75: * @rep:displayname Serialize Business Event
76: * @rep:compatibility S
77: */
78: procedure serialize(p_event in wf_event_t,
79: p_jms_text_message out nocopy sys.aq$_jms_text_message);
80:
81: --------------------------------------------------------------------------------
82: -- Tranforms a JMS Text Message into a business event.

Line 97: p_event out nocopy wf_event_t);

93: * @rep:displayname Deserialize JMS Text Message
94: * @rep:compatibility S
95: */
96: procedure deserialize(p_jms_text_message in out nocopy sys.aq$_jms_text_message,
97: p_event out nocopy wf_event_t);
98:
99: end wf_event_ojmstext_qh;