Ignore:
Timestamp:
11/07/16 17:55:55 (8 years ago)
Author:
oabramkina
Message:

My branch

Location:
XIOS/dev/dev_olga
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/node/context.hpp

    r917 r983  
    8888      public : 
    8989         // Initialize server or client 
     90         void initClient(MPI_Comm intraComm, MPI_Comm interComm, CContext* cxtServer = 0); 
    9091         void initServer(MPI_Comm intraComm, MPI_Comm interComm, CContext* cxtClient = 0); 
    91          void initClient(MPI_Comm intraComm, MPI_Comm interComm, CContext* cxtServer = 0); 
    9292         bool isInitialized(void); 
    9393 
     
    137137         void sendRefGrid(); 
    138138         void sendPostProcessing(); 
    139          void sendRegistry(void) ; //!< after be gathered to the root process of the context, merged registry is sent to the root process of the servers 
     139         //!< after be gathered to the root process of the context, merged registry is sent to the root process of the servers 
     140         void sendRegistry(void) ; 
     141 
    140142         const StdString& getIdServer(); 
    141143 
     
    151153         void recvPostProcessing(CBufferIn& buffer); 
    152154         static void recvRegistry(CEventServer& event) ; 
    153          void recvRegistry(CBufferIn& buffer) ; //!< registry is received by the root process of the servers 
     155         void recvRegistry(CBufferIn& buffer) ; //!< registry is received by the servers 
    154156 
    155157         // dispatch event 
     
    216218         bool hasServer; 
    217219 
    218          // Concrete context server 
    219          CContextServer* server; 
    220  
    221220         // Concrete contex client 
    222221         CContextClient* client; 
    223222         CRegistry* registryIn ;  //!< input registry which is read from file 
    224223         CRegistry* registryOut ; //!< output registry which will be wrote on file at the finalize 
     224 
     225         // Concrete context server 
     226         CContextServer* server; 
     227 
     228         // Client-server pair in case of secondary server pool 
     229         CContextClient* clientPrimServer; 
     230         CContextServer* serverPrimServer; 
    225231 
    226232      private: 
Note: See TracChangeset for help on using the changeset viewer.