本文整理汇总了C#中System.Action.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# Action.Execute方法的具体用法?C# Action.Execute怎么用?C# Action.Execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Action
的用法示例。
在下文中一共展示了Action.Execute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
private void Execute(Action action)
{
Stopwatch timer = Stopwatch.StartNew();
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;
try
{
SetStatus("{0}...", action.DescriptivePhrase);
using (new ScopedUndoContext(this, action.KeyName))
{
action.Execute();
}
SetStatus("{0} completed in {1} seconds", action.DescriptivePhrase, timer.Elapsed.TotalSeconds);
}
catch (Exception ex)
{
Error(ex);
SetStatus("Error {0}: {1}", action.DescriptivePhrase, ex.Message);
}
finally
{
timer.Stop();
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default;
}
}
示例2: UsePower
public Action UsePower(Power power, VillageMember initiator, Actor target)
{
if (target != null) {
Log.Debug(this.Name + " uses power " + power.GetType().Name + " on " + target.Name);
}
else {
Log.Debug(this.Name + " uses power " + power.GetType().Name);
}
if (target is VillageMember) {
if (((VillageMember)target).State == MemberState.Dead) {
throw new TargetIsDeadException(target.Name + " is dead.");
}
}
Action action = new Action(power, this, initiator, target);
try {
action.Prepare();
village.RaiseActionPrepared(action);
if (action.Power.Instant) {
action.Who.RaisePreActionSource(action);
if (action.Target != null) {
action.Target.RaisePreActionTarget(action);
}
if (action.Cancel) {
Log.Debug("Action cancelled.");
} else {
Log.Debug("Executing action...");
action.Execute();
action.Who.RaisePostActionSource(action);
if (action.Target != null) {
action.Target.RaisePostActionTarget(action);
}
if (action.Result != null) {
action.Result.Apply();
}
}
}
else {
Log.Debug("Queueing " + power.GetType().FullName + " on " + target.Name);
village.Phase.QueueAction(action);
action.ResultMessage = String.Format(power.QueuedMessage, target.Name);
}
village.RaiseActionExecuted(action);
return action;
}
catch (Action.ActionException ex) {
action.ResultMessage = ex.Message;
action.Cancel = true;
return action;
}
}
示例3: TestLockFreeColl2
public void TestLockFreeColl2()
{
Action<ICollection<int>, int, int> collAdd = (coll, a, b) => Enumerable.Range(a,b).Reverse().ForEach(i => coll.Add(i));
ConcurrentHashSet<int> testColl = new ConcurrentHashSet<int>();
var jobs = new Action[] {
() => { collAdd(testColl, 0, 500000);},
() => { collAdd(testColl, 500000, 500000);},
() => { collAdd(testColl, 1000000, 500000);},
() => { collAdd(testColl, 1500000, 500000);},
() => { collAdd(testColl, 2000000, 500000);},
() => { collAdd(testColl, 2500000, 500000);},
() => { collAdd(testColl, 3000000, 500000);},
() => { collAdd(testColl, 3500000, 500000);}
};
//var jobs = new Action[] {
// () => { collAdd(testColl, 0, 1000000);},
// () => { collAdd(testColl, 1000000, 1000000);},
// () => { collAdd(testColl, 2000000, 1000000);},
// () => { collAdd(testColl, 3000000, 1000000);}
//};
//var jobs = new Action[] {
// () => { collAdd(testColl, 0, 2000000);},
// () => { collAdd(testColl, 2000000, 2000000);}
//};
//var jobs = new Action[] {
// () => { collAdd(testColl, 0, 4000000);}
//};
TimeSpan serial = jobs.Execute();
}