本文整理汇总了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);
}
示例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);
}
示例3: ExecuteAsync
public IObservable<Unit> ExecuteAsync(ExecutionContext context)
{
context.AssertNotNull(nameof(context));
return this
.innerAction
.ExecuteAsync(context);
}
示例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);
}
示例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;
}
示例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);
}
示例7: EventBase
protected EventBase(ExecutionContext executionContext)
{
executionContext.AssertNotNull(nameof(executionContext));
this.executionContext = executionContext;
}