示例#1
0
        public virtual void updateTask(EloixClient.IndexServer.ClientInfo ci, EloixClient.IndexServer.UserTask userTask, EloixClient.IndexServer.notify.TaskNotifyType notifyType, BAsyncResult <Object> asyncResult)
        {
            BRequest_ClientNotification_updateTask req = new BRequest_ClientNotification_updateTask();

            req.ciValue         = ci;
            req.userTaskValue   = userTask;
            req.notifyTypeValue = notifyType;
            transport.sendMethod(req, asyncResult);
        }
示例#2
0
        public virtual void updateTask(EloixClient.IndexServer.ClientInfo ci, EloixClient.IndexServer.UserTask userTask, EloixClient.IndexServer.notify.TaskNotifyType notifyType, BAsyncResult <Object> asyncResult)
        {
            Object    __byps__ret = default(Object);
            Exception __byps__ex  = null;

            try {
                updateTask(ci, userTask, notifyType);
            }
            catch (Exception e) { __byps__ex = e; }
            asyncResult(__byps__ret, __byps__ex);
        }
示例#3
0
        public virtual void updateTask(EloixClient.IndexServer.ClientInfo ci, EloixClient.IndexServer.UserTask userTask, EloixClient.IndexServer.notify.TaskNotifyType notifyType)
        {
            BSyncResult <Object> asyncResult = new BSyncResult <Object>();

            updateTask(ci, userTask, notifyType, BAsyncResultHelper.ToDelegate <Object>(asyncResult));
            asyncResult.GetResult();
        }
示例#4
0
 public virtual void updateTask(EloixClient.IndexServer.ClientInfo ci, EloixClient.IndexServer.UserTask userTask, EloixClient.IndexServer.notify.TaskNotifyType notifyType)
 {
     throw new BException(BExceptionC.UNSUPPORTED_METHOD, "");
 }