public void QueueAction <T1, T2, T3, T4, T5, T6, T7, T8, T9>(MyAction <T1, T2, T3, T4, T5, T6, T7, T8, T9> action, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9) { bool needUseLambda = true; ObjectPool <PoolAllocatedAction <T1, T2, T3, T4, T5, T6, T7, T8, T9> > pool; m_ActionPools.GetOrNewData(out pool); if (null != pool) { PoolAllocatedAction <T1, T2, T3, T4, T5, T6, T7, T8, T9> helper = pool.Alloc(); if (null != helper) { helper.SetPoolRecycleLock(m_LockForAsyncActionRun); helper.Init(action, t1, t2, t3, t4, t5, t6, t7, t8, t9); m_Actions.Enqueue(helper.Run); needUseLambda = false; } } if (needUseLambda) { m_Actions.Enqueue(() => { action(t1, t2, t3, t4, t5, t6, t7, t8, t9); }); LogSystem.Warn("QueueAction {0}({1},{2},{3},{4},{5},{6},{7},{8},{9}) use lambda expression, maybe out of memory.", action.Method.ToString(), t1, t2, t3, t4, t5, t6, t7, t8, t9); } }
public void QueueActionWithDelegation(Delegate action, params object[] args) { bool needUseLambda = true; ObjectPool <PoolAllocatedAction> pool; m_ActionPools.GetOrNewData(out pool); if (null != pool) { PoolAllocatedAction helper = pool.Alloc(); if (null != helper) { helper.SetPoolRecycleLock(m_LockForAsyncActionRun); helper.Init(action, args); m_Actions.Enqueue(helper.Run); needUseLambda = false; } } if (needUseLambda) { m_Actions.Enqueue(() => { action.DynamicInvoke(args); }); LogSystem.Warn("QueueActionWithDelegation {0} use lambda expression, maybe out of memory.", action.Method.ToString()); } }