コード例 #1
0
 public static void SampleStore(this IAgentContext context, string key, object data)
 {
     context.SendServiceMessage("Sample", Tuple.Create(key, data));
 }
コード例 #2
0
 public static void SubscribeUserInput(this IAgentContext context, ValidatorKey key)
 {
     context.SendServiceMessage("IpfsInput", key);
 }
コード例 #3
0
 public static void SampleRestore(this IAgentContext context, string key)
 {
     context.SendServiceMessage("Sample", Tuple.Create(key));
 }