public void Add(CachedEvent e)
        {
            if (null == e)
                throw new KeenException("Cached events may not be null");

            lock (events)
                events.Enqueue(e);
        }
Beispiel #2
0
        public void Add(CachedEvent e)
        {
            if (null == e)
            {
                throw new KeenException("Cached events may not be null");
            }

            lock (events)
                events.Enqueue(e);
        }