##// END OF EJS Templates
minor changes
minor changes

File last commit:

r92:4c0e5ef99986 v2
r114:3fbc6eb93eb1 v2
Show More
AsyncPool.cs
77 lines | 2.3 KiB | text/x-csharp | CSharpLexer
cin
initial log capabilities
r35 using Implab.Diagnostics;
cin
refactoring
r25 using System;
using System.Threading;
namespace Implab.Parallels {
/// <summary>
/// Класс для распаралеливания задач.
/// </summary>
/// <remarks>
/// Используя данный класс и лямда выражения можно распараллелить
/// вычисления, для этого используется концепция обещаний.
/// </remarks>
public static class AsyncPool {
cin
initial work on interactive logger
r45 public static IPromise<T> Invoke<T>(Func<T> func) {
cin
refactoring
r25 var p = new Promise<T>();
cin
rewritten tracing
r92 var caller = TraceContext.Instance.CurrentOperation;
cin
refactoring
r25
ThreadPool.QueueUserWorkItem(param => {
cin
rewritten tracing
r92 TraceContext.Instance.EnterLogicalOperation(caller,false);
cin
refactoring
r25 try {
cin
Implemented interllocked queue...
r14 p.Resolve(func());
cin
refactoring
r25 } catch(Exception e) {
p.Reject(e);
cin
rewritten tracing
r92 } finally {
TraceContext.Instance.Leave();
}
cin
refactoring
r25 });
return p;
cin
Implemented interllocked queue...
r14 }
cin
initial work on interactive logger
r45 public static IPromise<T> InvokeNewThread<T>(Func<T> func) {
cin
Implemented interllocked queue...
r14 var p = new Promise<T>();
cin
rewritten tracing
r92 var caller = TraceContext.Instance.CurrentOperation;
cin
initial log capabilities
r35
cin
Implemented interllocked queue...
r14 var worker = new Thread(() => {
cin
rewritten tracing
r92 TraceContext.Instance.EnterLogicalOperation(caller,false);
cin
Implemented interllocked queue...
r14 try {
p.Resolve(func());
} catch (Exception e) {
p.Reject(e);
cin
rewritten tracing
r92 } finally {
TraceContext.Instance.Leave();
cin
Implemented interllocked queue...
r14 }
});
worker.IsBackground = true;
worker.Start();
return p;
cin
refactoring
r25 }
cin
Interactive tracing...
r48
cin
Refactoring
r66 public static IPromise InvokeNewThread(Action func) {
cin
Interactive tracing...
r48 var p = new Promise<object>();
cin
rewritten tracing
r92 var caller = TraceContext.Instance.CurrentOperation;
cin
Interactive tracing...
r48
var worker = new Thread(() => {
cin
rewritten tracing
r92 TraceContext.Instance.EnterLogicalOperation(caller,false);
cin
Interactive tracing...
r48 try {
func();
p.Resolve();
} catch (Exception e) {
p.Reject(e);
cin
rewritten tracing
r92 } finally {
TraceContext.Instance.Leave();
cin
Interactive tracing...
r48 }
});
worker.IsBackground = true;
worker.Start();
return p;
}
cin
refactoring
r25 }
}