Skip to content

Commit

Permalink
added doxygen comment for GetNextItem
Browse files Browse the repository at this point in the history
  • Loading branch information
computablee committed Sep 20, 2023
1 parent 6c58729 commit 4bce611
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions DotMP/Sections.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ internal class SectionsContainer
/// </summary>
private static ConcurrentBag<Action> actions_pv;

/// <summary>
/// Gets the next item from the actions bag.
/// </summary>
/// <param name="successful">Whether or not fetching from the bag was successful.</param>
/// <returns>The action pulled from the bag, if successful. If unsuccessful, undefined.</returns>
internal Action GetNextItem(out bool successful)
{
Action action;
Expand Down

0 comments on commit 4bce611

Please sign in to comment.