Example #1
0
        public virtual void registerNotify(String feedGuid, EloixClient.IndexServer.feed.FeedNotification notify)
        {
            BSyncResult <Object> asyncResult = new BSyncResult <Object>();

            registerNotify(feedGuid, notify, BAsyncResultHelper.ToDelegate <Object>(asyncResult));
            asyncResult.GetResult();
        }
Example #2
0
        public virtual void registerNotify(String feedGuid, EloixClient.IndexServer.feed.FeedNotification notify, BAsyncResult <Object> asyncResult)
        {
            BRequest_FeedService_registerNotify req = new BRequest_FeedService_registerNotify();

            req.feedGuidValue = feedGuid;
            req.notifyValue   = notify;
            transport.sendMethod(req, asyncResult);
        }
Example #3
0
 private void initStubs(BTransport transport)
 {
     iXEventBusHandlerVal  = new BStub_IXEventBusHandler(transport);
     iXServerEventsVal     = new BStub_IXServerEvents(transport);
     iXServicePortIFVal    = new BStub_IXServicePortIF(transport);
     rawStreamServiceVal   = new EloixClient.IndexServer.compatibility.BStub_RawStreamService(transport);
     wClientServiceVal     = new EloixClient.IndexServer.compatibility.BStub_WClientService(transport);
     feedNotificationVal   = new EloixClient.IndexServer.feed.BStub_FeedNotification(transport);
     feedServiceVal        = new EloixClient.IndexServer.feed.BStub_FeedService(transport);
     healthCheckServiceVal = new EloixClient.IndexServer.health.BStub_HealthCheckService(transport);
     myELOServiceVal       = new EloixClient.IndexServer.myelo.BStub_MyELOService(transport);
     clientNotificationVal = new EloixClient.IndexServer.notify.BStub_ClientNotification(transport);
     systemInformationVal  = new EloixClient.Indexserver.system.BStub_SystemInformation(transport);
 }