private void CreateFeed()
 {
     feedId = new FeedId(Guid.NewGuid().ToString());
     var atomFeedCreationCommand = new AtomFeedCreationCommand("title", "author", feedId,
         new DocumentId(Guid.NewGuid().ToString()));
     atomActorRef.Tell(atomFeedCreationCommand);
     Thread.Sleep(TimeSpan.FromSeconds(1));
 }
예제 #2
0
        private void CreateFeed()
        {
            feedId = new FeedId(Guid.NewGuid().ToString());
            var atomFeedCreationCommand = new AtomFeedCreationCommand("title", "author", feedId,
                                                                      new DocumentId(Guid.NewGuid().ToString()));

            atomActorRef.Tell(atomFeedCreationCommand);
            Thread.Sleep(TimeSpan.FromSeconds(1));
        }