当前位置: 首页>>代码示例>>C#>>正文


C# IEventStoreConnection.AppendToStream方法代码示例

本文整理汇总了C#中IEventStoreConnection.AppendToStream方法的典型用法代码示例。如果您正苦于以下问题:C# IEventStoreConnection.AppendToStream方法的具体用法?C# IEventStoreConnection.AppendToStream怎么用?C# IEventStoreConnection.AppendToStream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IEventStoreConnection的用法示例。


在下文中一共展示了IEventStoreConnection.AppendToStream方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TestFixtureSetUp

        public override void TestFixtureSetUp()
        {
            base.TestFixtureSetUp();
            _node = new MiniNode(PathName, skipInitializeStandardUsersCheck: false);
            _node.Start();
            _conn = TestConnection.Create(_node.TcpEndPoint);
            _conn.Connect();
            _conn.SetStreamMetadata("$all", -1,
                                    StreamMetadata.Build().SetReadRole(SystemRoles.All),
                                    new UserCredentials(SystemUsers.Admin, SystemUsers.DefaultAdminPassword));

            _testEvents = Enumerable.Range(0, 20).Select(x => TestEvent.NewTestEvent(x.ToString())).ToArray();
            _conn.AppendToStream("stream", ExpectedVersion.EmptyStream, _testEvents);
        }
开发者ID:msbahrul,项目名称:EventStore,代码行数:14,代码来源:read_all_events_backward_should.cs

示例2: SetUp

        public override void SetUp()
        {
            base.SetUp();
            _node = new MiniNode(PathName);
            _node.Start();

            _connection = TestConnection.Create(_node.TcpEndPoint);
            _connection.Connect();

            _connection.SetStreamMetadata(Stream, ExpectedVersion.EmptyStream, StreamMetadata.Build().SetMaxCount(3));

            _testEvents = Enumerable.Range(0, 5).Select(x => TestEvent.NewTestEvent(data: x.ToString())).ToArray();
            _connection.AppendToStream(Stream, ExpectedVersion.EmptyStream, _testEvents);
        }
开发者ID:Kristinn-Stefansson,项目名称:EventStore,代码行数:14,代码来源:when_having_max_count_set_for_stream.cs

示例3: AppendToStream

 private static void AppendToStream(UserCredentials credentials, IEventStoreConnection connection, UnitOfWork unitOfWork)
 {
     var affected = unitOfWork.GetChanges().Single();
     connection.AppendToStream(
         affected.Identifier,
         affected.ExpectedVersion,
         affected.Root.GetChanges().
             Select(_ =>
                 new EventData(
                     Guid.NewGuid(),
                     _.GetType().Name,
                     true,
                     ToJsonByteArray(_),
                     new byte[0])),
         credentials);
 }
开发者ID:jfloodnet,项目名称:DDDWorkshop,代码行数:16,代码来源:Program.cs

示例4: TestFixtureSetUp

        public override void TestFixtureSetUp()
        {
            base.TestFixtureSetUp();
            _node = new MiniNode(PathName);
            _node.Start();

            _conn = TestConnection.Create(_node.TcpEndPoint);
            _conn.Connect();

            _eventId0 = Guid.NewGuid();
            _eventId1 = Guid.NewGuid();

            _conn.AppendToStream("test-stream",
                                 -1, 
                                 new EventData(_eventId0, "event0", false, new byte[3], new byte[2]),
                                 new EventData(_eventId1, "event1", false, new byte[7], new byte[10]));
            _conn.DeleteStream("deleted-stream", -1, hardDelete: true);
        }
开发者ID:msbahrul,项目名称:EventStore,代码行数:18,代码来源:read_event_should.cs

示例5: SetUp

        public override void SetUp()
        {
            base.SetUp();
            _node = new MiniNode(PathName);
            _node.Start();

            _firstEvent = TestEvent.NewTestEvent();

            _connection = TestConnection.Create(_node.TcpEndPoint);
            _connection.Connect();

            Assert.AreEqual(2, _connection.AppendToStream("test-stream",
                                                          ExpectedVersion.NoStream,
                                                          _firstEvent,
                                                          TestEvent.NewTestEvent(),
                                                          TestEvent.NewTestEvent()).NextExpectedVersion);

            using (var transaction = _connection.StartTransaction("test-stream", 2))
            {
                Assert.AreEqual(2, transaction.Commit().NextExpectedVersion);
            }
        }
开发者ID:kijanawoodard,项目名称:EventStore,代码行数:22,代码来源:when_committing_empty_transaction.cs

示例6: Enqueue

 public void Enqueue(Message msg, IEventStoreConnection connection, string queue)
 {
     //todo
     var evnt = new EventData(msg.Id, "type", true, null, null);
     connection.AppendToStream(queue, ExpectedVersion.Any, evnt);
 }
开发者ID:valeriob,项目名称:MyBudget,代码行数:6,代码来源:ActorContext.P1.cs

示例7: Connect

 private void Connect()
 {
     var settings = ConnectionSettings.Create();
     var ip = new IPEndPoint(_ipAddress, _port);
     Log("Connecting to {0}:{1}...", _ipAddress, _port);
     _connection = EventStoreConnection.Create(settings, ip);
     _connection.Connect();
     _connection.AppendToStream("hello", ExpectedVersion.Any, new EventData(Guid.NewGuid(), "Hello", false, new byte[0], new byte[0]));
     Log("Connected.");
     Log("Username to be used is: {0}", _userName);
     _credentials = new UserCredentials(_userName, _password);
 }
开发者ID:kijanawoodard,项目名称:EventStore,代码行数:12,代码来源:UpgradeProjectionsWorker.cs


注:本文中的IEventStoreConnection.AppendToStream方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。