GitSharp.Core.RevWalk.Generator.shareFreeList C# (CSharp) Method

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
        public virtual void shareFreeList(BlockRevQueue q)
        {
            // Do nothing by default.
        }

Usage Example

Example #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;
			}
All Usage Examples Of GitSharp.Core.RevWalk.Generator::shareFreeList