ByChance.Configuration.Parameters.DiscardOpenChunksRestriction.ShouldBeDiscarded C# (CSharp) Method

ShouldBeDiscarded() public method

Used by DiscardOpenChunksPolicy to check whether to discard the passed chunk with open contexts, or not. Returns true.
public ShouldBeDiscarded ( Chunk chunk ) : bool
chunk ByChance.Core.Chunk Chunk to be discarded.
return bool
        public bool ShouldBeDiscarded(Chunk chunk)
        {
            return true;
        }
DiscardOpenChunksRestriction