Esempio n. 1
0
        public virtual void findHashTags(EloixClient.IndexServer.feed.FindHashTagInfo findInfo, BAsyncResult <Dictionary <String, EloixClient.IndexServer.feed.HashTag> > asyncResult)
        {
            BRequest_FeedService_findHashTags req = new BRequest_FeedService_findHashTags();

            req.findInfoValue = findInfo;
            transport.sendMethod(req, asyncResult);
        }
Esempio n. 2
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());
        }
Esempio n. 3
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);
        }
Esempio n. 4
0
        public virtual Dictionary <String, EloixClient.IndexServer.feed.HashTag> findHashTags(EloixClient.IndexServer.feed.FindHashTagInfo findInfo)
        {
            BSyncResult <Dictionary <String, EloixClient.IndexServer.feed.HashTag> > asyncResult = new BSyncResult <Dictionary <String, EloixClient.IndexServer.feed.HashTag> >();

            findHashTags(findInfo, BAsyncResultHelper.ToDelegate <Dictionary <String, EloixClient.IndexServer.feed.HashTag> >(asyncResult));
            return(asyncResult.GetResult());
        }