Ignore:
Timestamp:
06/23/23 14:46:51 (12 months ago)
Author:
ymipsl
Message:

Adaptation to new hyper event scheduler.
YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/manager/services.cpp

    r2517 r2523  
    99namespace xios 
    1010{ 
    11   CService::CService(MPI_Comm serviceComm, const std::string& poolId, const std::string& serviceId, const int& partitionId,  
    12                      int type, int nbPartitions, shared_ptr<CEventScheduler> eventScheduler)  
     11  CService::CService(MPI_Comm serviceComm, shared_ptr<CEventScheduler> eventScheduler, const std::string& poolId, const std::string& serviceId, const int& partitionId,  
     12                     int type, int nbPartitions)  
    1313                         : finalizeSignal_(false), eventScheduler_(nullptr), poolId_(poolId), serviceId_(serviceId), 
    1414                           partitionId_(partitionId), type_(type), nbPartitions_(nbPartitions), hasNotification_(false) 
     
    191191          size_t hashId = hashString(name_) ; 
    192192          size_t currentTimeLine=0 ; 
    193           info(40)<<"CService::checkNotifications(void) : receive notification => event scheduler"<<endl ; 
     193          info(40)<<"CService::checkNotifications(void) : receive notification => event scheduler : timeLine : "<<currentTimeLine<<"  hashId : "<<hashId<<endl ; 
    194194          eventScheduler_->registerEvent(currentTimeLine,hashId);  
    195195        } 
     
    203203      size_t hashId = hashString(name_) ; 
    204204      size_t currentTimeLine=0 ; 
    205       info(40)<<"CService::checkNotifications(void) : receive notification => event scheduler : eventIsReceived ?"<<endl ; 
     205//      info(40)<<"CService::checkNotifications(void) : receive notification => event scheduler : eventIsReceived ?"<<endl ; 
    206206      if (eventScheduler_->queryEvent(currentTimeLine,hashId)) 
    207207      { 
Note: See TracChangeset for help on using the changeset viewer.