当前位置: 首页>>代码示例>>C#>>正文


C# ExecutionContext.AssertNotNull方法代码示例

本文整理汇总了C#中ExecutionContext.AssertNotNull方法的典型用法代码示例。如果您正苦于以下问题:C# ExecutionContext.AssertNotNull方法的具体用法?C# ExecutionContext.AssertNotNull怎么用?C# ExecutionContext.AssertNotNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ExecutionContext的用法示例。


在下文中一共展示了ExecutionContext.AssertNotNull方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));

            var childrenToExecute = this
                .children
                .Where(x => context.SkipAhead == TimeSpan.Zero || context.SkipAhead < x.Duration)
                .OrderByDescending(x => x.Duration)
                .ToList();

            if (childrenToExecute.Count == 0)
            {
                // although this shouldn't really happen, we've been asked to execute even though the skip ahead exceeds even our longest-running child
                context.AddProgress(this.Duration);
                return Observable.Return(Unit.Default);
            }

            var shadowedContext = CreateShadowExecutionContext(context);

            // only the longest-running child gets the real execution context. The other actions get a shadowed context so that progress does not compound incorrectly
            var childExecutions = childrenToExecute
                .Select((action, index) => action.ExecuteAsync(index == 0 ? context : shadowedContext))
                .ToList();

            return Observable
                .CombineLatest(childExecutions)
                .Select(_ => Unit.Default);
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:28,代码来源:ParallelAction.cs

示例2: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));

            var childExecutions = this
                .children
                .Select(
                    child => Observable
                        .Return(Unit.Default)
                        .Select(
                            _ =>
                            {
                                context.CancellationToken.ThrowIfCancellationRequested();
                                var execute = true;

                                if (context.SkipAhead > TimeSpan.Zero && context.SkipAhead >= child.Duration)
                                {
                                    context.AddProgress(child.Duration);
                                    execute = false;
                                }

                                return new
                                {
                                    Child = child,
                                    Execute = execute
                                };
                            })
                        .Where(x => x.Execute)
                        .SelectMany(x => x.Child.ExecuteAsync(context)))
                .DefaultIfEmpty(Observable.Return(Unit.Default));

            return Observable
                .Concat(childExecutions)
                .RunAsync(context.CancellationToken);
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:35,代码来源:SequenceAction.cs

示例3: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));

            return this
                .innerAction
                .ExecuteAsync(context);
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:8,代码来源:MetronomeAction.cs

示例4: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));
            context.CancellationToken.ThrowIfCancellationRequested();

            return context
                .WaitWhilePausedAsync()
                .SelectMany(_ => this.audioService.PlayAsync(this.audioName))
                .FirstAsync()
                .RunAsync(context.CancellationToken);
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:11,代码来源:AudioAction.cs

示例5: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));

            var remainingDelay = this.delay;
            var skipAhead = MathExt.Min(remainingDelay, context.SkipAhead);

            if (skipAhead > TimeSpan.Zero)
            {
                remainingDelay = remainingDelay - skipAhead;
                context.AddProgress(skipAhead);
            }

            var remaining = Observable
                .Generate(
                    remainingDelay,
                    r => r > TimeSpan.Zero,
                    r =>
                    {
                        var delayFor = MathExt.Min(remainingDelay, maximumDelayTime);
                        return r - delayFor;
                    },
                    r => r)
                .Publish();
            var nextRemaining = remaining
                .Skip(1)
                .Concat(Observable.Return(TimeSpan.Zero));
            var delays = remaining
                .Zip(
                    nextRemaining,
                    (current, next) => current - next);
            var result = Observable
                .Concat(
                    delays
                        .SelectMany(delay => context.WaitWhilePausedAsync().Select(_ => delay))
                        .Select(
                            delay =>
                                Observable
                                    .Defer(
                                        () =>
                                            this
                                                .delayService
                                                .DelayAsync(delay, context.CancellationToken)
                                                .Select(_ => delay))))
                .Do(delay => context.AddProgress(delay))
                .Select(_ => Unit.Default)
                .RunAsync(context.CancellationToken);

            remaining.Connect();

            return result;
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:52,代码来源:WaitAction.cs

示例6: ExecuteAsync

        public IObservable<Unit> ExecuteAsync(ExecutionContext context)
        {
            context.AssertNotNull(nameof(context));

            this
                .innerAction
                .ExecuteAsync(context)
                .Subscribe(
                    _ => { },
                    ex => this.logger.Error("Failed to execute inner action: " + ex));

            return Observable.Return(Unit.Default);
        }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:13,代码来源:DoNotAwaitAction.cs

示例7: EventBase

 protected EventBase(ExecutionContext executionContext)
 {
     executionContext.AssertNotNull(nameof(executionContext));
     this.executionContext = executionContext;
 }
开发者ID:reactiveui-forks,项目名称:WorkoutWotch,代码行数:5,代码来源:EventBase.cs


注:本文中的ExecutionContext.AssertNotNull方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。