共用方式為


MailboxProcessor.Receive<'Msg> 方法 (F#)

更新:2011 年 1 月

等待訊息。 這將會使用第一個收到的訊息。

命名空間/模組路徑: Microsoft.FSharp.Control

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
member this.Receive : ?int -> Async<'Msg>

// Usage:
mailboxProcessor.Receive ()
mailboxProcessor.Receive (timeout = timeout)

參數

  • timeout
    型別:int

    選擇性逾時 (以毫秒為單位)。 預設為 -1,對應至 Infinite()。

例外狀況

例外狀況

條件

TimeoutException

在超出逾時值時擲回。

傳回值

一個非同步計算 ( 非同步 物件),傳回所收到的訊息。

備註

這個方法要在代理程式的主體中使用。 每一個的代理程式沒有多個並行 Receive、 的 TryReceive呼叫、 掃描 TryScan 可能是使用中,因此可能使用中,最多一個的並行讀取器。

範例

下列範例示範如何使用 Receive 方法。 在本例中被指定的 10 秒鐘的逾時。 在就一般訊息處理函式執行 張貼 函數,從不同的執行緒中是讓您必須攔截逾時例外狀況訊息處理器函式中。 在此的範例逾時例外狀況只會繼續,迴圈和增加 1 中的訊息數目。

open System

type Message = string * AsyncReplyChannel<string>

let formatString = "Message number {0} was received. Message contents: {1}"

let agent = MailboxProcessor<Message>.Start(fun inbox ->
    let rec loop n =
        async {            
            try
                let! (message, replyChannel) = inbox.Receive(10000);

                if (message = "Stop") then
                    replyChannel.Reply("Stop")
                else
                    replyChannel.Reply(String.Format(formatString, n, message))
                do! loop (n + 1)

            with
            | :? TimeoutException -> 
                printfn "The mailbox processor timed out."
                do! loop (n + 1)
        }
    loop (0))

printfn "Mailbox Processor Test"
printfn "Type some text and press Enter to submit a message."
printfn "Type 'Stop' to close the program."


let rec loop() =
    printf "> "
    let input = Console.ReadLine()
    let reply = agent.PostAndReply(fun replyChannel -> input, replyChannel)
    if (reply <> "Stop") then
        printfn "Reply: %s" reply
        loop()
    else
        ()
loop()

printfn "Press Enter to continue."
Console.ReadLine() |> ignore

會遵循典型的工作階段。 請注意該訊息 2 已略過該,因為逾時。

                    

平台

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本資訊

F# 執行階段

支援版本:2.0、4.0

Silverlight

支援版本:3

請參閱

參考

Control.MailboxProcessor<'Msg> 類別 (F#)

Microsoft.FSharp.Control 命名空間 (F#)

變更記錄

日期

History

原因

2011 年 1 月

加入程式碼範例。

資訊加強。