Yves Reynhout
Yves Reynhout
The surface of the api exposed by EventStore.Client.Grpc.ProjectionManagement does not match with what is available in the UI and causes subtle issues. # CreateContinuousAsync `Task EventStoreProjectionManagementClient.CreateContinuousAsync(string name, string query, bool...
This PR addresses #533
Today a former client brought to my attention that they were observing timeouts while reading a long stream using the `ReadStreamForwards` method. They were using a reasonable page size so...
This PR introduces two new methods on IReadonlyStreamStore (non-breaking change): - ReadHeadMessage: reads the head message of all streams, i.e. the latest message - ReadStreamHeadMessage: reads the head message of...
This is a cosmetic, yet breaking change on the way to 1.0. While debatable if needed it is the more predominant term used.
Brainstorming ``` public class SqlProjectionScenarioBuilder { } public interface ISqlProjectionScenarioInitialState { ISqlProjectionScenarioGivenState Given(IEnumerable messages); ISqlProjectionScenarioGivenState Given(object[] messages); ISqlProjectionScenarioGivenState Given(object message); } public interface ISqlProjectionScenarioGivenState { ISqlProjectionScenarioGivenState Given(IEnumerable messages); ISqlProjectionScenarioGivenState Given(object[]...
- Port the leveldb persistence bits. - Need LevelDB component for C# .NET. Using the LevelDB .NET component, port the following: - iddd_common basic Event Store support from Java to...
Meet a new citizen ``` csharp public interface IEventConverter { IEnumerable Convert(TEvent @event); } ``` Requires that the IEventDeserializer relaxes a bit as well ``` csharp public interface IEventDeserializer {...
Add the nuget packages to the teamcity nuget feed. Add eventstore log output to build artifacts.