我有一个应用程序,该应用程序具有存储在static ConcurrentBag中的对象列表。

UI有一个计时器,该计时器运行可以更新ConcurrentBag中的对象的方法。

只有一个线程(由计时器启动)将尝试更新这些对象。但是,该线程将枚举整个列表,然后根据需要更新各项。

同时,UI线程可以读取这些对象。
ConcurrentBag非常适合我想做的事情。所有业务逻辑都在一个单独的项目中,我现在需要将所有内容移植到iOS和Android。我正在使用Xamarin进行此操作,因此将业务逻辑转换为可移植类库。

尽管我定位的所有内容似乎都支持ConcurrentBag,但是当我尝试在PCL中访问它时,System.Collections.Concurrent不可用。即使我只针对.net 4.5及更高版本+ Windows商店应用程序(我都使用ConcurrentBags)
ConcurrentBag是否有另一种替代方法?还是我最好为每个目标系统创建单独的项目?

最佳答案

好吧,如果显而易见的方法行不通,您可以在此处选择几种方法。首先,是反编译ConcurrentBag并使用该代码。其次,是想出一个替代品。据我估计,在您的特定情况下,您不一定需要性能保证和ConcurrentBag的订购问题...因此,这是一个适合您的账单的有效示例:

namespace Naive
{
    using System;
    using System.Collections.Generic;
    using System.Collections.ObjectModel;

    public class ThreadSafeCollectionNaive<T>
    {
        private readonly List<T> _list = new List<T>();
        private readonly object _criticalSection = new object();

        /// <summary>
        /// This is consumed in the UI. This is O(N)
        /// </summary>
        public ReadOnlyCollection<T> GetContentsCopy()
        {
            lock (_criticalSection)
            {
                return new List<T>(_list).AsReadOnly();
            }
        }

        /// <summary>
        /// This is a hacky way to handle updates, don't want to write lots of code
        /// </summary>
        public void Update(Action<List<T>> workToDoInTheList)
        {
            if (workToDoInTheList == null) throw new ArgumentNullException("workToDoInTheList");

            lock (_criticalSection)
            {
                workToDoInTheList.Invoke(_list);
            }
        }

        public int Count
        {
            get
            {
                lock (_criticalSection)
                {
                    return _list.Count;
                }
            }
        }

        // Add more members as you see fit
    }

    class Program
    {
        static void Main(string[] args)
        {
            var collectionNaive = new ThreadSafeCollectionNaive<string>();

            collectionNaive.Update((l) => l.AddRange(new []{"1", "2", "3"}));

            collectionNaive.Update((l) =>
                                       {
                                           for (int i = 0; i < l.Count; i++)
                                           {
                                               if (l[i] == "1")
                                               {
                                                   l[i] = "15";
                                               }
                                           }
                                       });
        }
    }
}

10-06 01:12