view Implab/FuncTask.cs @ 244:eee3e49dd1ff v3

working on promises
author cin
date Thu, 25 Jan 2018 19:09:16 +0300
parents 40d7fed4a09e
children
line wrap: on
line source

using System;
using System.Threading;

namespace Implab {
    public class FuncTask<T> : FuncTaskBase<T>, IResolvable {
        readonly Func<T> m_task;

        public FuncTask(Func<T> task, Func<Exception, T> error, Func<Exception, T> cancel, bool autoCancellable) : base(error, cancel, autoCancellable) {
            m_task = task;
        }

        public void Resolve() {
            if (m_task != null && LockCancelation()) {
                try {
                    SetResult(m_task());
                } catch(Exception err) {
                    SetErrorInternal(err);
                }
            }
        }
    }
}