Пример #1
0
        public virtual void findHashTagByActions(String[] actionGuids, EloixClient.IndexServer.feed.HashTagZ hashTagZ, BAsyncResult <HashSet <EloixClient.IndexServer.feed.HashTag> > asyncResult)
        {
            BRequest_FeedService_findHashTagByActions req = new BRequest_FeedService_findHashTagByActions();

            req.actionGuidsValue = actionGuids;
            req.hashTagZValue    = hashTagZ;
            transport.sendMethod(req, asyncResult);
        }
Пример #2
0
        public virtual void checkoutHashTag(String hashtagGuidOrName, EloixClient.IndexServer.feed.HashTagZ hstgZ, BAsyncResult <EloixClient.IndexServer.feed.HashTag> asyncResult)
        {
            BRequest_FeedService_checkoutHashTag req = new BRequest_FeedService_checkoutHashTag();

            req.hashtagGuidOrNameValue = hashtagGuidOrName;
            req.hstgZValue             = hstgZ;
            transport.sendMethod(req, asyncResult);
        }
Пример #3
0
        public virtual HashSet <EloixClient.IndexServer.feed.HashTag> findHashTagByActions(String[] actionGuids, EloixClient.IndexServer.feed.HashTagZ hashTagZ)
        {
            BSyncResult <HashSet <EloixClient.IndexServer.feed.HashTag> > asyncResult = new BSyncResult <HashSet <EloixClient.IndexServer.feed.HashTag> >();

            findHashTagByActions(actionGuids, hashTagZ, BAsyncResultHelper.ToDelegate <HashSet <EloixClient.IndexServer.feed.HashTag> >(asyncResult));
            return(asyncResult.GetResult());
        }
Пример #4
0
        public virtual void findNextHashTagRelation(String searchId, int idx, int max, EloixClient.IndexServer.feed.HashTagZ hashTagZ, BAsyncResult <EloixClient.IndexServer.FindResult> asyncResult)
        {
            BRequest_FeedService_findNextHashTagRelation req = new BRequest_FeedService_findNextHashTagRelation();

            req.searchIdValue = searchId;
            req.idxValue      = idx;
            req.maxValue      = max;
            req.hashTagZValue = hashTagZ;
            transport.sendMethod(req, asyncResult);
        }
Пример #5
0
        public virtual EloixClient.IndexServer.FindResult findNextHashTagRelation(String searchId, int idx, int max, EloixClient.IndexServer.feed.HashTagZ hashTagZ)
        {
            BSyncResult <EloixClient.IndexServer.FindResult> asyncResult = new BSyncResult <EloixClient.IndexServer.FindResult>();

            findNextHashTagRelation(searchId, idx, max, hashTagZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.FindResult>(asyncResult));
            return(asyncResult.GetResult());
        }
Пример #6
0
        public virtual void findFirstHashTagRelation(EloixClient.IndexServer.feed.FindHashTagInfo findInfo, int max, EloixClient.IndexServer.feed.HashTagZ hashTagZ, BAsyncResult <EloixClient.IndexServer.FindResult> asyncResult)
        {
            BRequest_FeedService_findFirstHashTagRelation req = new BRequest_FeedService_findFirstHashTagRelation();

            req.findInfoValue = findInfo;
            req.maxValue      = max;
            req.hashTagZValue = hashTagZ;
            transport.sendMethod(req, asyncResult);
        }
Пример #7
0
        public virtual EloixClient.IndexServer.FindResult findFirstHashTagRelation(EloixClient.IndexServer.feed.FindHashTagInfo findInfo, int max, EloixClient.IndexServer.feed.HashTagZ hashTagZ)
        {
            BSyncResult <EloixClient.IndexServer.FindResult> asyncResult = new BSyncResult <EloixClient.IndexServer.FindResult>();

            findFirstHashTagRelation(findInfo, max, hashTagZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.FindResult>(asyncResult));
            return(asyncResult.GetResult());
        }
Пример #8
0
        public virtual EloixClient.IndexServer.feed.HashTag checkoutHashTag(String hashtagGuidOrName, EloixClient.IndexServer.feed.HashTagZ hstgZ)
        {
            BSyncResult <EloixClient.IndexServer.feed.HashTag> asyncResult = new BSyncResult <EloixClient.IndexServer.feed.HashTag>();

            checkoutHashTag(hashtagGuidOrName, hstgZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.feed.HashTag>(asyncResult));
            return(asyncResult.GetResult());
        }