Delphi下MSMQ(Mircosoft Message Queue)实例(私有队列)
生活随笔
收集整理的這篇文章主要介紹了
Delphi下MSMQ(Mircosoft Message Queue)实例(私有队列)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
網上關于消息隊列技術原理說明的詳細文檔很多,但涉及到Delphi的具體實現很少,這是我從網上找了一上午的資料,自己整合和嘗試的能運行的程序。
打開控制面板->程序->添加組件,添加消息隊列
打開控制面板->計算機管理->服務與應用程序->消息隊列,添加私有有消息Test.
在Delphi中添加MSMQ控件, TMSMQMessage; TMSMQQueueInfo; TMSMQQueue; TMSMQEvent; 這些控件在Project->Import type Library里存在。
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs,MSMQ_TLB,ComObj,StdCtrls,OleServer; type TForm1 = class(TForm) MSMQMessage1: TMSMQMessage; MSMQQueueInfo1: TMSMQQueueInfo; MSMQQueue1: TMSMQQueue; MSMQEvent1: TMSMQEvent; Button1: TButton; edit1:TEdit; edit2: TEdit; Button2: TButton; lbl1: TLabel; lbl2: TLabel; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); procedure MSMQEvent1Arrived(Sender: TObject; var Queue: OleVariant; Cursor: Integer); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} //發送消息 procedure TForm1.Button1Click(Sender: TObject); begin//確定消息隊列路徑 MSMQQueueInfo1.PathName :='./Private$/Test'; //遠程機器名 MSMQQueueInfo1.RemoteMachineName := '127.0.0.1' ; //消息內容 (MSMQMessage1.DefaultInterface as IMSMQMessage).body :=edit1.Text; //連接到消息隊列 MSMQQueue1.ConnectTo(MSMQQueueInfo1.Open(MQ_SEND_ACCESS, 0)); //發送消息 MSMQMessage1.Send(MSMQQueueInfo1.Open(MQ_SEND_ACCESS, MQ_DENY_NONE)); showmessage( '已經把信息入寫入消息隊列中 '); end; //接收消息 procedure TForm1.Button2Click(Sender: TObject); begin msmqqueueinfo1.PathName :='./Private$/Test'; msmqqueue1.Disconnect; msmqqueue1.ConnectTo(msmqqueueinfo1.Open(1, 0)); //msmqqueue1.EnableNotification(MSMQEvent1.DefaultInterface); end; //MSMQEvent事件 procedure TForm1.MSMQEvent1Arrived(Sender: TObject; var Queue: OleVariant; Cursor: Integer); var Msg: Variant; begin //從隊列中讀取消息 Msg := msmqqueue1.Receive; edit2.Text := Msg.body; end; end.?
轉載于:https://www.cnblogs.com/Coder-MIFir/p/10333753.html
總結
以上是生活随笔為你收集整理的Delphi下MSMQ(Mircosoft Message Queue)实例(私有队列)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 开发vue底部导航栏组件
- 下一篇: Webbench的使用