sequence property

  1. @TagNumber(1)
Int64 sequence

sequence represents the order of events. It's always counting

on read: the sequence of the last event reduced by the projection

on manipulation: the timestamp of the event(s) added by the manipulation

Implementation

@$pb.TagNumber(1)
$fixnum.Int64 get sequence => $_getI64(0);
  1. @TagNumber(1)
void sequence=(Int64 v)

Implementation

@$pb.TagNumber(1)
set sequence($fixnum.Int64 v) { $_setInt64(0, v); }