shareFreeList() public method

Connect the supplied queue to this generator's own free list (if any).
public shareFreeList ( GitSharp.Core.RevWalk.BlockRevQueue q ) : void
q GitSharp.Core.RevWalk.BlockRevQueue /// Another FIFO queue that wants to share our queue's free list. ///
return void
Exemplo n.º 1
0
			public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent) // [henon] parent needed because we cannot access outer instances in C#
			{
				_walk = w;
				_held = new FIFORevQueue();
				_source = s;
				_source.shareFreeList(_held);
				_parent = parent;
			}
 public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent)             // [henon] parent needed because we cannot access outer instances in C#
 {
     _walk   = w;
     _held   = new FIFORevQueue();
     _source = s;
     _source.shareFreeList(_held);
     _parent = parent;
 }
 // [henon] parent needed because we cannot access outer instances in C#
 public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent)
 {
     _walk = w;
     _held = new FIFORevQueue();
     _source = s;
     _source.shareFreeList(_held);
     _parent = parent;
 }