Example #1
0
        public override IEnumerable <Comment> Fetch(CommentQuery query)
        {
            var pair = HostSet.AssignHost(query.G_TargetNode);

            return(Contracts.ServiceClientHub
                   .CallWithRetry <IGraphCommentSystemClient, IEnumerable <Comment> >(
                       commentSystem => commentSystem.Fetch(query),
                       pair.Select(host => host.RegionPath)
                       ));
        }
Example #2
0
 public abstract IEnumerable <Comment> Fetch(CommentQuery query);
Example #3
0
 public override IEnumerable <Comment> Fetch(CommentQuery query)
 {
     yield break;
 }