MADNESS
0.10.1
|
Implements active message layer for World on top of RMI layer. More...
#include <madness/world/buffer_archive.h>
#include <madness/world/worldrmi.h>
#include <madness/world/world.h>
#include <vector>
#include <cstddef>
#include <memory>
#include <pthread.h>
Go to the source code of this file.
Classes | |
class | madness::AmArg |
World active message that extends an RMI message. More... | |
class | madness::WorldAmInterface::SendReq |
class | madness::WorldAmInterface |
Implements AM interface. More... | |
Namespaces | |
madness | |
File holds all helper structures necessary for the CC_Operator and CC2 class. | |
Typedefs | |
typedef void(* | madness::am_handlerT) (const AmArg &) |
Type of AM handler functions. More... | |
Functions | |
AmArg * | madness::alloc_am_arg (std::size_t nbyte) |
Allocates a new AmArg with nbytes of user data ... delete with free_am_arg. More... | |
AmArg * | madness::copy_am_arg (const AmArg &arg) |
void | madness::free_am_arg (AmArg *arg) |
Frees an AmArg allocated with alloc_am_arg. More... | |
template<typename... argT> | |
AmArg * | madness::new_am_arg (const argT &... args) |
Convenience template for serializing arguments into a new AmArg. More... | |
template<typename Archive > | |
void | madness::serialize_am_args (Archive &&) |
Terminate argument serialization. More... | |
template<typename Archive , typename T , typename... argT> | |
void | madness::serialize_am_args (Archive &&archive, T &&t, argT &&... args) |
Argument serialization. More... | |
Implements active message layer for World on top of RMI layer.