internal DPE_PublicationsPostingManager(DPE_DataPublicationsClient client)
 {
     this._STXDataSocketClient = client;
     this._STXDataSocketClient.ConnectionWithSTXDataServerLost += this._STXDataSocketClient_ConnectionWithSTXDataServerLost;
     this._ContainerOfPostedPublicationsOnServer           = new DPE_PublicationDefinitionsContainer();
     this._ContainerOfScheduledPublicationsPostingOnServer = new DPE_PublicationDefinitionsContainer();
     this._PublicationScheduleREgistersTable = new Hashtable();
     this._publicationsScheduledPostingQueue = new Queue();
 }
Пример #2
0
 internal DPE_PublicationsContainerEnumerator(DPE_PublicationDefinitionsContainer publicationsContainer)
 {
     this._STXDSSPublicationDefinitionsContainer = publicationsContainer;
     this.enumm = this._STXDSSPublicationDefinitionsContainer.DefintionsTable.GetEnumerator();
 }