Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class handler

boost::mpi::request::handler

Synopsis

// In header: <boost/mpi/request.hpp>



class handler {
public:

  // public member functions
  virtual ~handler() = 0;
  virtual status wait() = 0;
  virtual optional< status > test() = 0;
  virtual void cancel() = 0;
  virtual bool active() const = 0;
  virtual optional< MPI_Request & > trivial() = 0;
};

Description

handler public member functions

  1. virtual ~handler() = 0;
  2. virtual status wait() = 0;
  3. virtual optional< status > test() = 0;
  4. virtual void cancel() = 0;
  5. virtual bool active() const = 0;
  6. virtual optional< MPI_Request & > trivial() = 0;

PrevUpHomeNext