Azure Service Fabric の SDK が公開されていた
Visual Studio 2015 RCが必須です。 Service Fabric Documentation | Azure Set up your Service Fabric development environment ちょっとだけ雑感 Choosing a framework Reliable Actors APIs と Reliable Services APIs のどちらかを選択する。 Azure Service Fabric Actors Overview Actor の 並行性 がこんな感じ。 f:id:nnasaki:20150430141336p:plain Getting Started with Microsoft Azure Service Fabric Reliable Actors Hello, World サンプルコードがこんな感じ。先ほどの図の通り、だいぶ非同期満載です。 namespace HelloWorld { public class HelloWorld : Actor, IHelloWorld { public Task<string> SayHello(string greeting) { return Task.FromResult("You said: '" + greeting + "', I say: Hello Actors!"); } } } Overview of the Service Fabric Reliable Service Programming Model ステートレスかステートフルかを選ぶ ...