コード例 #1
0
 public static RFCatalogKey Create(RFKeyDomain domain, RFGraphInstance instance)
 {
     return(domain.Associate(new RFEngineStatsKey
     {
         Plane = RFPlane.System,
         StoreType = RFStoreType.Document,
         GraphInstance = instance
     }));
 }
コード例 #2
0
ファイル: RFScheduler.cs プロジェクト: awesomedotnetcore/riff
 public static RFCatalogKey Create(RFKeyDomain domain, RFEnum triggerName)
 {
     return(domain.Associate(new RFSchedulerTriggerKey
     {
         TriggerName = triggerName,
         StoreType = RFStoreType.Document,
         Plane = RFPlane.Ephemeral
     }));
 }
コード例 #3
0
 public static RFManualTriggerKey CreateKey(RFKeyDomain keyDomain, RFEnum triggerCode, RFGraphInstance instance)
 {
     return(keyDomain.Associate <RFManualTriggerKey>(new RFManualTriggerKey
     {
         StoreType = RFStoreType.Document,
         Plane = RFPlane.User,
         GraphInstance = instance,
         TriggerCode = triggerCode
     }));
 }
コード例 #4
0
ファイル: RFStatusKey.cs プロジェクト: awesomedotnetcore/riff
 public static RFStatusKey Create(RFKeyDomain domain, string processName, RFGraphInstance instance)
 {
     return(domain.Associate(new RFStatusKey
     {
         ProcessName = processName,
         GraphInstance = instance,
         Plane = RFPlane.System,
         StoreType = RFStoreType.Document
     }));
 }
コード例 #5
0
ファイル: RFStateKey.cs プロジェクト: awesomedotnetcore/riff
 public static RFStateKey CreateKey(RFKeyDomain keyDomain, string graphName, string processName, RFGraphInstance instance)
 {
     return(keyDomain.Associate <RFStateKey>(new RFStateKey
     {
         StoreType = RFStoreType.Document,
         Plane = RFPlane.User,
         GraphInstance = instance,
         GraphName = graphName,
         ProcessName = processName
     }));
 }
コード例 #6
0
 public static RFGenericCatalogKey Create(RFKeyDomain keyDomain, string path, RFEnum _enum, RFGraphInstance instance)
 {
     return(keyDomain.Associate(new RFGenericCatalogKey
     {
         GraphInstance = instance,
         Name = _enum.ToString(),
         Path = path,
         Plane = RFPlane.User,
         StoreType = RFStoreType.Document
     }));
 }