コード例 #1
0
        public virtual EloixClient.IndexServer.feed.Action createAction(EloixClient.IndexServer.feed.EActionType type, String parentGuid)
        {
            BSyncResult <EloixClient.IndexServer.feed.Action> asyncResult = new BSyncResult <EloixClient.IndexServer.feed.Action>();

            createAction(type, parentGuid, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.feed.Action>(asyncResult));
            return(asyncResult.GetResult());
        }
コード例 #2
0
        public virtual void createAction(EloixClient.IndexServer.feed.EActionType type, String parentGuid, BAsyncResult <EloixClient.IndexServer.feed.Action> asyncResult)
        {
            BRequest_FeedService_createAction req = new BRequest_FeedService_createAction();

            req.typeValue       = type;
            req.parentGuidValue = parentGuid;
            transport.sendMethod(req, asyncResult);
        }
コード例 #3
0
        public override Object read(object obj1, BInput bin1, long version)
        {
            BInputBin  bin  = ((BInputBin)bin1);
            BBufferBin bbuf = bin.bbuf;
            int        n    = bbuf.getLength();
            List <EloixClient.IndexServer.feed.EActionType> arr = new List <EloixClient.IndexServer.feed.EActionType>(n);

            bin.onObjectCreated(arr);
            for (int i = 0; i < n; i++)
            {
                EloixClient.IndexServer.feed.EActionType obj = (EloixClient.IndexServer.feed.EActionType)bbuf.getInt();
                arr.Add(obj);
            }
            return(arr);
        }
コード例 #4
0
ファイル: Action.cs プロジェクト: ThomasEcherer/elo
 public Action(String @guid, EloixClient.IndexServer.feed.EActionType @type, String @feedGuid, String @parentGuid, String @userGuid, int @userId, String @userName, String @createDateIso, String @updateDateIso, int @changeCounter, String @text, String @docVersionGuid, EloixClient.IndexServer.DocVersion @docVersion, String @workflowGuid, EloixClient.IndexServer.WFDiagram @workflow, String @TStamp, IList <EloixClient.IndexServer.feed.ActionHistory> @history, String @acl, EloixClient.IndexServer.AclItem[] @aclItems, String @TStampSync)
 {
     this.guidValue           = @guid;
     this.typeValue           = @type;
     this.feedGuidValue       = @feedGuid;
     this.parentGuidValue     = @parentGuid;
     this.userGuidValue       = @userGuid;
     this.userIdValue         = @userId;
     this.userNameValue       = @userName;
     this.createDateIsoValue  = @createDateIso;
     this.updateDateIsoValue  = @updateDateIso;
     this.changeCounterValue  = @changeCounter;
     this.textValue           = @text;
     this.docVersionGuidValue = @docVersionGuid;
     this.docVersionValue     = @docVersion;
     this.workflowGuidValue   = @workflowGuid;
     this.workflowValue       = @workflow;
     this.TStampValue         = @TStamp;
     this.historyValue        = @history;
     this.aclValue            = @acl;
     this.aclItemsValue       = @aclItems;
     this.TStampSyncValue     = @TStampSync;
 }