public static Task RebuildAssetFoldersAsync(this Rebuilder rebuilder, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <AssetFolderDomainObject, AssetFolderState>("^assetFolder\\-", ct));
 }
 public static Task RebuildContentAsync(this Rebuilder rebuilder, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <ContentDomainObject, ContentState>("^content\\-", ct));
 }
 public static Task RebuildSchemasAsync(this Rebuilder rebuilder, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <SchemaDomainObject, SchemaState>("^schema\\-", ct));
 }
 public static Task RebuildRulesAsync(this Rebuilder rebuilder, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <RuleDomainObject, RuleState>("^rule\\-", ct));
 }
 public static Task RebuildAppsAsync(this Rebuilder rebuilder, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <AppDomainObject, AppState>("^app\\-", ct));
 }
Esempio n. 6
0
 public static Task RebuildAssetsAsync(this Rebuilder rebuilder, int batchSize, CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <AssetDomainObject, AssetDomainObject.State>("^asset\\-", batchSize, ct));
 }
Esempio n. 7
0
 public static Task RebuildContentAsync(this Rebuilder rebuilder, int batchSize,
                                        CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <ContentDomainObject, ContentDomainObject.State>("^content\\-", batchSize, AllowedErrorRate, ct));
 }
Esempio n. 8
0
 public static Task RebuildRulesAsync(this Rebuilder rebuilder, int batchSize,
                                      CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <RuleDomainObject, RuleDomainObject.State>("^rule\\-", batchSize, AllowedErrorRate, ct));
 }
Esempio n. 9
0
 public static Task RebuildSchemasAsync(this Rebuilder rebuilder, int batchSize,
                                        CancellationToken ct = default)
 {
     return(rebuilder.RebuildAsync <SchemaDomainObject, SchemaDomainObject.State>("^schema\\-", batchSize, AllowedErrorRate, ct));
 }