EventStore.Core.Messages.StorageMessage.EventCommitted.EventCommitted C# (CSharp) Method

EventCommitted() public method

public EventCommitted ( long commitPosition, EventRecord @event, bool isTfEof ) : System
commitPosition long
@event EventRecord
isTfEof bool
return System
            public EventCommitted(long commitPosition, EventRecord @event, bool isTfEof)
            {
                CommitPosition = commitPosition;
                Event = @event;
                TfEof = isTfEof;
            }
        }
StorageMessage.EventCommitted