本文整理汇总了C#中PSharpRuntime.CreateMachine方法的典型用法代码示例。如果您正苦于以下问题:C# PSharpRuntime.CreateMachine方法的具体用法?C# PSharpRuntime.CreateMachine怎么用?C# PSharpRuntime.CreateMachine使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PSharpRuntime
的用法示例。
在下文中一共展示了PSharpRuntime.CreateMachine方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(Server), "TheUltimateServerMachine");
}
示例2: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.RegisterMonitor(typeof(M));
runtime.CreateMachine(typeof(Environment));
}
示例3: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.RegisterMonitor(typeof(WatchDog));
runtime.CreateMachine(typeof(EventHandler));
}
示例4: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(TaskCreator));
}
示例5: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.RegisterMonitor(typeof(SafetyMonitor));
runtime.CreateMachine(typeof(ClusterManager));
}
示例6: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(ClusterManager));
}
示例7: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(EventHandler));
}
示例8: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.RegisterMonitor(typeof(LivenessMonitor));
runtime.CreateMachine(typeof(M));
}
示例9: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(Environment),
new Environment.Config(Test.NumOfNodes));
}
示例10: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(Receiver));
}
示例11: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(Employee));
}
示例12: Execute
public static void Execute(PSharpRuntime runtime)
{
// The type "A" is visible to IntelliSense
// (after building once)
runtime.CreateMachine(typeof(A));
}
示例13: Execute
public static void Execute(PSharpRuntime runtime)
{
runtime.CreateMachine(typeof(Program));
}