sql server 系统过程问题

有没有人知道这个msdb.dbo.sp_readrequest 系统过程是干什么用的?
谷歌了很多发现对这个过程的解释很少.

-- sp_readrequest : Reads a request from the the queue and returns its contents.
CREATE PROCEDURE sp_readrequest
@receive_timeout INT -- the max time this read will wait for new message

功能说明:从消息队列中读取请求并返回内容

参数声明:此次读请求等待新消息的最大时间,这个时间可以从邮件参数中配置。

https://www.cnblogs.com/accumulater/p/6223792.html