C# Class GitSharp.Core.RevWalk.Generator

Show file Open project: jagregory/GitSharp Class Usage Examples

Public Methods

Method Description
next ( ) : RevCommit

Return the next commit to the application, or the next generator.

shareFreeList ( GitSharp.Core.RevWalk.BlockRevQueue q ) : void

Connect the supplied queue to this generator's own free list (if any).

Method Details

next() public abstract method

Return the next commit to the application, or the next generator.
public abstract next ( ) : RevCommit
return RevCommit

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