예제 #1
0
 public void Enqueue(T item)
 {
     lock ( Items )
     {
         Items.AddLast(item);
     }
 }
예제 #2
0
 internal GroupByClause(ISelectQuery selectQuery, IGroupByClause clone,
                        Dictionary <ICloneableElement, ICloneableElement> objectTree, Predicate <ICloneableElement> doClone)
     : base(selectQuery)
 {
     clone.Items.ForEach(
         node =>
     {
         var value = (IQueryExpression)node.Value.Clone(objectTree, doClone);
         Items.AddLast(value);
     });
 }
예제 #3
0
파일: Playlist.cs 프로젝트: malebra/Opyum
 public void Insert(IPlaylistItem item) => Items.AddLast(item);
예제 #4
0
파일: Playlist.cs 프로젝트: malebra/Opyum
 public void Add(IPlaylistItem item)
 {
     Items.AddLast(item);
 }
예제 #5
0
 internal GroupByClause(LinkedList <IQueryExpression> items) : base(null)
 {
     items.ForEach(node => Items.AddLast(node.Value));
 }
예제 #6
0
 public void AddMusicSymbol(IMusicSymbol symbol)
 {
     Items.AddLast(symbol);
 }