Example #1
0
        public virtual void Dispose(bool disposing)
        {
            if (disposed)
            {
                return;
            }

            if (disposing)
            {
                Logout();
                iXConnFactory     = null;
                auth              = null;
                url               = null;
                connPropsVal      = null;
                sessionOptionsVal = null;
                ixVal             = null;
                constVal          = null;
                eventBusApiVal    = null;
                bclient           = null;
            }
            disposed = true;
        }
Example #2
0
        /// <summary>
        /// Set notification callback interface for document feed events.
        /// </summary>
        /// <param name="feedNotification">Serivce interface</param>
        public void setFeedNotification(BSkeleton_FeedNotification feedNotification)
        {
            EventBusApi dummy = EventBusApi;

            bclient.addRemote(feedNotification);
        }
Example #3
0
 internal MyEventBusHandler(EventBusApi eventBusApi)
 {
     this.eventBusApi = eventBusApi;
 }
Example #4
0
 internal Bus(EventBusApi eventBusApi, long busId)
 {
     this.eventBusApi = eventBusApi;
     this.busId       = busId;
 }