23 #include "openPMD/config.hpp" 24 #include "openPMD/IO/AbstractIOHandler.hpp" 29 #if openPMD_HAVE_ADIOS1 34 # define EXPORT __declspec( dllexport ) 35 #elif defined(__NVCC__) 38 # define EXPORT __attribute__((visibility("default"))) 44 class EXPORT ADIOS1IOHandlerImpl;
46 #if openPMD_HAVE_ADIOS1 57 std::future< void > flush()
override;
59 void enqueue(
IOTask const&)
override;
62 std::queue< IOTask > m_setup;
63 std::unique_ptr< ADIOS1IOHandlerImpl > m_impl;
72 ~ADIOS1IOHandler()
override;
74 std::string backendName()
const override {
return "DUMMY_ADIOS1"; }
76 std::future< void > flush()
override;
79 std::unique_ptr< ADIOS1IOHandlerImpl > m_impl;
AccessType
File access mode to use during IO.
Definition: AccessType.hpp:28
Self-contained description of a single IO operation.
Definition: IOTask.hpp:468
Definition: ADIOS1IOHandler.hpp:47
Interface for communicating between logical and physically persistent data.
Definition: AbstractIOHandler.hpp:68
Public definitions of openPMD-api.
Definition: Date.cpp:28
Definition: ADIOS1IOHandlerImpl.hpp:51
std::string backendName() const override
The currently used backend.
Definition: ADIOS1IOHandler.hpp:55