Exemplo n.º 1
0
        /// <summary>
        /// Executes an action on an instance within a scope defined by IScopeContextHelper.<br/>
        /// The scope is automatically created and disposed.
        /// </summary>
        /// <typeparam name="T">A object type</typeparam>
        /// <param name="helper">A scope context helper</param>
        /// <param name="scopeSetup">(Optional)A delegate to setup the scope. Usually used to set Singleton values. e.g. scope =&gt; scope.SetSingletonValue&lt;T&gt;(value)</param>
        /// <param name="action">An action to be executed.</param>
        public static void Execute <T>(this IScopeContextFactory helper, Action <IScopeContext> scopeSetup, Action <T> action)
        {
            using (var scope = helper.CreateScope())
            {
                if (scopeSetup != null)
                {
                    scopeSetup(scope);
                }

                var instance = scope.Get <T>();
                action(instance);
            }
        }
Exemplo n.º 2
0
 /// <summary>
 /// Executes an action asynchronously on an instance within a scope defined by IScopeContextHelper.<br/>
 /// The scope is automatically created and disposed.
 /// </summary>
 /// <typeparam name="T">A object type</typeparam>
 /// <param name="helper">A scope context helper</param>
 /// <param name="scopeSetup">(Optional)A delegate to setup the scope. Usually used to set Singleton values. e.g. scope =&gt; scope.SetSingletonValue&lt;T&gt;(value)</param>
 /// <param name="action">An action to be executed asynchronously.</param>
 /// <returns>Returns a running Task</returns>
 public static Task ExecuteAsync <T>(this IScopeContextFactory helper, Action <IScopeContext> scopeSetup, Action <T> action)
 {
     return(Task.Factory.StartNew(() =>
     {
         try
         {
             helper.Execute(scopeSetup, action);
         }
         catch (Exception ex)
         {
             ex.LogException();
             throw;
         }
     }));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Executes an action on an instance within a scope defined by IScopeContextHelper.<br/>
 /// The scope is automatically created and disposed.
 /// </summary>
 /// <typeparam name="T">A object type</typeparam>
 /// <param name="helper">A scope context helper</param>
 /// <param name="action">An action to be executed.</param>
 public static void Execute <T>(this IScopeContextFactory helper, Action <T> action)
 {
     helper.Execute <T>(null, action);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Executes an action asynchronously on an instance within a scope defined by IScopeContextHelper.<br/>
 /// The scope is automatically created and disposed.
 /// </summary>
 /// <typeparam name="T">A object type</typeparam>
 /// <param name="helper">A scope context helper</param>
 /// <param name="action">An action to be executed asynchronously.</param>
 /// <returns>Returns a running Task</returns>
 public static Task ExecuteAsync <T>(this IScopeContextFactory helper, Action <T> action)
 {
     return(helper.ExecuteAsync <T>(null, action));
 }