Arcane  4.1.12.0
User documentation
Loading...
Searching...
No Matches
SerializeBuffer.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2026 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* SerializeBuffer.h (C) 2000-2024 */
9/* */
10/* Serialization buffer. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_SERIALIZEBUFFER_H
13#define ARCANE_CORE_SERIALIZEBUFFER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arccore/serialize/BasicSerializer.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26class IParallelMng;
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31/*!
32 * \internal
33 * \brief Implementation of a buffer for serialization.
34 *
35 * This class is internal to %Arcane and should not be used
36 * externally.
37 *
38 * This class is obsolete. You must use Arccore::BasicSerializer
39 * instead.
40 */
41class ARCANE_CORE_EXPORT SerializeBuffer
43{
44 public:
45
46 ARCANE_DEPRECATED_REASON("Y2024: Use mpAllGather() instead")
47 void allGather(IParallelMng* pm, const SerializeBuffer& send_serializer);
48};
49
50/*---------------------------------------------------------------------------*/
51/*---------------------------------------------------------------------------*/
52
53} // End namespace Arcane
54
55/*---------------------------------------------------------------------------*/
56/*---------------------------------------------------------------------------*/
57
58#endif
Arcane configuration file.
Interface of the parallelism manager for a subdomain.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --