Как этот код Scala будет выглядеть в идиоматическом C #? - PullRequest
3 голосов
/ 14 октября 2010

Я наткнулся на этот действительно красивый код Scala во время исследования XMPP для проекта .Net, над которым мы работаем:

object Main {

  /**
   * @param args the command line arguments
   */
  def main(args: Array[String]) :Unit = {
      new XMPPComponent(
        new ComponentConfig() {
            def secret() : String = { "secret.goes.here" }
            def server() : String = { "communitivity.com" }
            def subdomain() : String = { "weather" }
            def name() : String = { "US Weather" }
            def description() : String = { "Weather component that also supported SPARQL/XMPP" }
        },
       actor {
        loop {
            react {
                case (pkt:Packet, out : Actor) =>
                    Console.println("Received packet...\n"+pkt.toXML)
                    pkt match {
                        case message:Message =>
                            val reply  = new Message()
                            reply.setTo(message.getFrom())
                            reply.setFrom(message.getTo())
                            reply.setType(message.getType())
                            reply.setThread(message.getThread())
                            reply.setBody("Received '"+message.getBody()+"', tyvm")
                            out ! reply
                        case _ =>
                            Console.println("Received something other than Message")
                    }
                 case _ =>
                    Console.println("Received something other than (Packet, actor)")
            }
        }
       }
    ).start
  }
}

(взято из http://github.com/Communitivity/MinimalScalaXMPPComponent/blob/master/src/org/communitivity/echoxmpp/Main.scala)

Актер и сопоставление с образцом выглядят как действительно хороший способ написания компонентов в масштабируемой форме. Я не смог найти библиотек актеров C #, которые выглядят зрелыми, и изучение Axum кажется излишним.

Что было бы правильным способом атаковать это в C #? (конечно, игнорируя специфический код XMPP - меня больше интересует, как будет выглядеть версия актеров и сопоставление с образцом на C #).

1 Ответ

3 голосов
/ 14 октября 2010

Существуют библиотеки, подобные Actor, доступные для .NET, см. retlang для одного, также F # агенты аналогичны.

Также см. Этот вопрос .

...