示例#1
0
 internal ResolveToPartitionWorkItem(FabricBackupResourceType fabricBackupResourceType, string applicationOrServiceUri, WorkItemInfo workItemInfo)
     : base(workItemInfo)
 {
     this.FabricBackupResourceType = fabricBackupResourceType;
     this.ApplicationOrServiceUri  = applicationOrServiceUri;
 }
 internal SendToServiceNodeWorkItem(string serviceUri, string partitionId, WorkItemInfo workItemInfo) : base(workItemInfo)
 {
     this.ServiceUri  = serviceUri;
     this.PartitionId = partitionId;
 }
 internal BackupPolicyWorkItem(WorkItemInfo workItemInfo)
 {
     this.WorkItemInfo = workItemInfo;
 }
示例#4
0
 internal UpdateEnablementWorkItem(List <string> listofEnablement, WorkItemInfo workItemInfo)
     : base(workItemInfo)
 {
     this.listOfEnablement = new HashSet <string>(listofEnablement);
 }