source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/XIOS/src/event_client.hpp @ 6607

Last change on this file since 6607 was 6607, checked in by acosce, 10 months ago

XIOS used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 779 bytes
Line 
1#ifndef __EVENT_CLIENT_HPP__
2#define __EVENT_CLIENT_HPP__
3
4#include "xios_spl.hpp"
5#include "buffer_out.hpp"
6#include "message.hpp"
7
8namespace xios
9{
10  class CEventClient
11  {
12    public:
13      static const size_t headerSize;
14
15      CEventClient(int classId, int typeId);
16
17      void push(int rank, int nbSender, CMessage& msg);
18      void send(size_t timeLine, const std::list<int>& sizes, std::list<CBufferOut*>&); 
19
20      bool isEmpty(void);
21      std::list<int> getRanks(void);
22      std::list<int> getSizes(void);
23      int getClassId(void) { return classId; }
24      int getTypeId(void) { return typeId; }
25     
26    private:
27      int classId;
28      int typeId;
29      std::list<int> ranks;
30      std::list<int> nbSenders;
31      std::list<CMessage*> messages;
32  };
33}
34
35#endif
Note: See TracBrowser for help on using the repository browser.