DBA Data[Home] [Help]

APPS.HRI_OPL_MULTI_THREAD dependencies on DBMS_PIPE

Line 257: l_sleep := dbms_pipe.receive_message

253: -- A l_priority_count > 0 means its not of higher priority.
254: -- So wait for higher priority requests to run and hibernate the one at hand.
255: WHILE (l_priority_count > 0) LOOP
256:
257: l_sleep := dbms_pipe.receive_message
258: (pipename => 'non-existant pipe to force timeout',
259: timeout => 20);
260:
261: -- Is the higher priority req. count zero now, take a poll here.

Line 299: l_sleep := dbms_pipe.receive_message

295:
296: -- If any are found, enter a wait loop until they are complete
297: WHILE (l_lower_hrchy_count > 0) LOOP
298:
299: l_sleep := dbms_pipe.receive_message
300: (pipename => 'non-existant pipe to force timeout',
301: timeout => 10);
302:
303: -- Recheck until the requests are completed

Line 1179: l_sleep := dbms_pipe.receive_message

1175: END LOOP;
1176: --
1177: -- Pause to avoid over polling of fnd_concurrent_requests
1178: --
1179: l_sleep := dbms_pipe.receive_message
1180: (pipename => 'non-existant pipe to force timeout',
1181: timeout => 10);
1182: --
1183: END LOOP;