2017-04-25 57 views
3

我試圖在F#系統中的C#庫中定義一些ReceiveActor。我試着創建非F#API ActorSystem,但是調用system.ActorOf(Props.Create(fun() -> new CSharpActor()))並不能說函數參數不兼容。Akka.NET可以在F#系統中創建C#actor嗎?

我也無法在F#API頁面找到關於如何創建在C#庫中定義的actor的任何文檔。這只是沒有完成?它通常是一個「壞」的設計 - 即是否應該在圖書館本身創建演員系統?

編輯:代碼,我跟打下面

C#代碼

namespace CsActors { 
    using Akka.Actor; 
    using System; 

    public class CsActor : ReceiveActor { 
    public CsActor() { 
     Receive<string>(msg => { Console.WriteLine($"C# actor received: {msg}"); }); 
    } 
    } 

    public class CsActorWithArgs : ReceiveActor { 
    public CsActorWithArgs(string prefix) { 
     Receive<string>(msg => { Console.WriteLine($"{prefix}: {msg}"); }); 
    } 
    } 
} 

F#腳本

#I @"../build" 

#r @"Akka.dll" 
#r @"Akka.FSharp.dll" 
#r @"CsActors.dll" 

open Akka.Actor 
open Akka.FSharp 
open CsActors 

let system = System.create "fcmixed" (Configuration.load()) 

// fails at runtime with "System.InvalidCastException: Unable to cast object of type 'System.Linq.Expressions.InstanceMethodCallExpressionN' to type 'System.Linq.Expressions.NewExpression'." 
//let c1 = system.ActorOf(Props.Create(fun _ -> CsActor())) 

// works if CsActor has constructor with no arguments 
let c2 = system.ActorOf<CsActor> "c2" 
c2 <! "foo" 

// if actor doesn't have default constructor - this won't compile 
//let c3 = system.ActorOf<CsActorWithArgs> "c3" 

// Horusiath solution works for actors requiring arguments 
let c4 = system.ActorOf(Props.Create(typeof<CsActorWithArgs>, [| box "c4-prefix" |])) 
c4 <! "foo" 


// Just for fun trying to use suggestion by dumetrulo (couldn't quite get it to work...) 
// copied Lambda module from http://www.fssnip.net/ts/title/F-lambda-to-C-LINQ-Expression 
//module Lambda = 
// open Microsoft.FSharp.Linq.RuntimeHelpers 
// open System.Linq.Expressions 
// let toExpression (``f# lambda`` : Quotations.Expr<'a>) = 
//  ``f# lambda`` 
//  |> LeafExpressionConverter.QuotationToExpression 
//  |> unbox<Expression<'a>> 
//let c5 = system.ActorOf(Props.Create(<@ (fun _ -> CsActorWithArgs "c5-prefix") @> |> Lambda.toExpression)) 
//c5 <! "foo" 
+2

C#和F#都編譯到IL。它應該和調用任何其他F#庫沒有什麼不同,只要你提供正確的類型和參數等等,一切都應該起作用。 – mason

+1

您可以發佈類型簽名以及確切的錯誤消息。 – s952163

+2

您可能需要將該函數轉換爲C#的合適代理類型 – Foole

回答

2

Props.Create與功能將無法正常工作,因爲什麼C#中的10實際上是接受一個表達式,並將其解構爲actor類型和構造函數參數。這是必要的,因爲Props的一個要求是它必須是可序列化的。

你可以做的是使用Props.Create(typeof<MyActor>, [| box myArg1; box myArg2 |])的另一個重載,它本質上是相同的,只是沒有編譯類型的安全性。

這就是說,如果可能的話只使用AkklingAkka.FSharp API會更好。

相關問題