Marten.Events.Projections.Async.EventPage.EventPage C# (CSharp) Method

EventPage() public method

public EventPage ( long @from, IList sequences, IList events ) : System
@from long
sequences IList
events IList
return System
        public EventPage(long @from, IList<long> sequences, IList<IEvent> events)
        {
            Sequences = sequences;
            From = @from;
            To = Sequences.LastOrDefault();
            Streams = ToStreams(events);
        }

Same methods

EventPage::EventPage ( long from, long to, IList events ) : System