Exemplo n.º 1
0
        public virtual void checkoutAction(String actionGuid, EloixClient.IndexServer.feed.ActionZ actionZ, BAsyncResult <EloixClient.IndexServer.feed.Action> asyncResult)
        {
            BRequest_FeedService_checkoutAction req = new BRequest_FeedService_checkoutAction();

            req.actionGuidValue = actionGuid;
            req.actionZValue    = actionZ;
            transport.sendMethod(req, asyncResult);
        }
Exemplo n.º 2
0
        public virtual void findNextActions(String searchId, int idx, int max, EloixClient.IndexServer.feed.ActionZ actionZ, BAsyncResult <EloixClient.IndexServer.FindResult> asyncResult)
        {
            BRequest_FeedService_findNextActions req = new BRequest_FeedService_findNextActions();

            req.searchIdValue = searchId;
            req.idxValue      = idx;
            req.maxValue      = max;
            req.actionZValue  = actionZ;
            transport.sendMethod(req, asyncResult);
        }
Exemplo n.º 3
0
 public FindHashTagInfo(String @hashtagGuidOrName, String @createDateIso, String @lastUsedIso, int @minCount, EloixClient.IndexServer.feed.ActionZ @actionZ, EloixClient.IndexServer.SordZ @sordZ, bool @findFeeds, bool @findHashTags, bool @findSubscriptions)
 {
     this.hashtagGuidOrNameValue = @hashtagGuidOrName;
     this.createDateIsoValue     = @createDateIso;
     this.lastUsedIsoValue       = @lastUsedIso;
     this.minCountValue          = @minCount;
     this.actionZValue           = @actionZ;
     this.sordZValue             = @sordZ;
     this.findFeedsValue         = @findFeeds;
     this.findHashTagsValue      = @findHashTags;
     this.findSubscriptionsValue = @findSubscriptions;
 }
Exemplo n.º 4
0
 public FindNotificationInfo(String @userGuidOrID, int @what, String @createDateIso, bool @inclImportant, EloixClient.IndexServer.SordZ @sordZ, EloixClient.IndexServer.feed.ActionZ @actionZ, bool @findFeeds, bool @findHashTags, bool @findSubscriptions)
 {
     this.userGuidOrIDValue      = @userGuidOrID;
     this.whatValue              = @what;
     this.createDateIsoValue     = @createDateIso;
     this.inclImportantValue     = @inclImportant;
     this.sordZValue             = @sordZ;
     this.actionZValue           = @actionZ;
     this.findFeedsValue         = @findFeeds;
     this.findHashTagsValue      = @findHashTags;
     this.findSubscriptionsValue = @findSubscriptions;
 }
Exemplo n.º 5
0
        public virtual EloixClient.IndexServer.feed.Action checkoutAction(String actionGuid, EloixClient.IndexServer.feed.ActionZ actionZ)
        {
            BSyncResult <EloixClient.IndexServer.feed.Action> asyncResult = new BSyncResult <EloixClient.IndexServer.feed.Action>();

            checkoutAction(actionGuid, actionZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.feed.Action>(asyncResult));
            return(asyncResult.GetResult());
        }
Exemplo n.º 6
0
        public virtual void checkinAction(EloixClient.IndexServer.feed.Action action, EloixClient.IndexServer.feed.ActionZ actionZ, BAsyncResult <String> asyncResult)
        {
            BRequest_FeedService_checkinAction req = new BRequest_FeedService_checkinAction();

            req.actionValue  = action;
            req.actionZValue = actionZ;
            transport.sendMethod(req, asyncResult);
        }
Exemplo n.º 7
0
        public virtual String checkinAction(EloixClient.IndexServer.feed.Action action, EloixClient.IndexServer.feed.ActionZ actionZ)
        {
            BSyncResult <String> asyncResult = new BSyncResult <String>();

            checkinAction(action, actionZ, BAsyncResultHelper.ToDelegate <String>(asyncResult));
            return(asyncResult.GetResult());
        }
Exemplo n.º 8
0
        public virtual EloixClient.IndexServer.FindResult findNextActions(String searchId, int idx, int max, EloixClient.IndexServer.feed.ActionZ actionZ)
        {
            BSyncResult <EloixClient.IndexServer.FindResult> asyncResult = new BSyncResult <EloixClient.IndexServer.FindResult>();

            findNextActions(searchId, idx, max, actionZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.FindResult>(asyncResult));
            return(asyncResult.GetResult());
        }
Exemplo n.º 9
0
        public virtual void findFirstActions(EloixClient.IndexServer.feed.FindActionsInfo findInfo, int max, EloixClient.IndexServer.feed.ActionZ actionZ, BAsyncResult <EloixClient.IndexServer.FindResult> asyncResult)
        {
            BRequest_FeedService_findFirstActions req = new BRequest_FeedService_findFirstActions();

            req.findInfoValue = findInfo;
            req.maxValue      = max;
            req.actionZValue  = actionZ;
            transport.sendMethod(req, asyncResult);
        }
Exemplo n.º 10
0
        public virtual EloixClient.IndexServer.FindResult findFirstActions(EloixClient.IndexServer.feed.FindActionsInfo findInfo, int max, EloixClient.IndexServer.feed.ActionZ actionZ)
        {
            BSyncResult <EloixClient.IndexServer.FindResult> asyncResult = new BSyncResult <EloixClient.IndexServer.FindResult>();

            findFirstActions(findInfo, max, actionZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.FindResult>(asyncResult));
            return(asyncResult.GetResult());
        }