DBA Data[Home] [Help]

PACKAGE: APPS.IBU_CACHE

Source


1 package IBU_CACHE AUTHID CURRENT_USER as
2 /* $Header: ibuxpkgs.pls 115.6 2004/03/29 22:15:08 lahuang ship $ */
3 
4 /* ------------------------------------------------------------------------
5    The cleanup procedure that is called regularly by the database job to
6    cleanup expired entries.
7    ------------------------------------------------------------------------ */
8 procedure timeout_entries(errbuf out NOCOPY varchar2,
9                           errcode out NOCOPY number,
10                           timeout in number default 30);
11 
12 /* ------------------------------------------------------------------------
13    Install the database job that will expire some cache entries.
14    ------------------------------------------------------------------------ */
15 procedure install_timeout_job(msg out NOCOPY varchar2);
16 
17 
18 /* ------------------------------------------------------------------------
19    Uninstall the database job.
20    ------------------------------------------------------------------------ */
21 procedure uninstall_timeout_job(msg out NOCOPY varchar2);
22 
23 end IBU_CACHE;