private async Task RegisterWorkflowQueues(Type userDefinedIGrain, Type userDefinedGrainImpl) { if (this.IsInSilo) { await IndexFactory.RegisterIndexWorkflowQueues(this.siloIndexManager, userDefinedIGrain, userDefinedGrainImpl); } }
private async Task RegisterWorkflowQueues(Type grainInterfaceType, Type grainClassType, bool isFaultTolerant) { if (this.IsInSilo) { await IndexFactory.RegisterIndexWorkflowQueues(this.siloIndexManager, grainInterfaceType, grainClassType, isFaultTolerant); } }