Marten.Events.Projections.Async.EventPage.IsSequential C# (CSharp) 메소드

IsSequential() 공개 메소드

public IsSequential ( ) : bool
리턴 bool
        public bool IsSequential()
        {
            if (!Sequences.Any()) return false;

            var startsAfterFrom = Sequences[0] - From == 1;
            return startsAfterFrom && IsCompletelySequential(Sequences) ;
        }