Last change
on this file since 1394 was
731,
checked in by rlacroix, 9 years ago
|
Correctly estimate the needed buffer sizes.
The attributes were not considered which could lead to incorrect estimations.
|
-
Property copyright set to
Software name : XIOS (Xml I/O Server) http://forge.ipsl.jussieu.fr/ioserver Creation date : January 2009 Licence : CeCCIL version2 see license file in root directory : Licence_CeCILL_V2-en.txt or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement) CNRS/IPSL (Institut Pierre Simon Laplace) Project Manager : Yann Meurdesoif yann.meurdesoif@cea.fr
|
File size:
681 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 | |
---|
8 | namespace 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 | |
---|
24 | private: |
---|
25 | int classId; |
---|
26 | int typeId; |
---|
27 | std::list<int> ranks; |
---|
28 | std::list<int> nbSenders; |
---|
29 | std::list<CMessage*> messages; |
---|
30 | }; |
---|
31 | } |
---|
32 | |
---|
33 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.