📄 queuedemo.dpr
字号:
// Direct Oracle Access - QueueDemo
// Allround Automations
// support@allroundautomations.com
// http://www.allroundautomations.com
//
// This application demonstrates:
// - Creation of a queue object, queue table, and the queue itself
// - Enqueueing a message
// - Dequeueing messages in a backgound thread
program QueueDemo;
uses
Forms,
MainUnit in 'MainUnit.pas' {QueueDemoForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TQueueDemoForm, QueueDemoForm);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -