'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct link_action_req

odtone::mih::link_action_req

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/mih/types/link.hpp>


struct link_action_req {

  // public member functions
  template<typename ArchiveT> void serialize(ArchiveT &);

  // public data members
  link_id id;
  boost::variant< null, link_addr > addr;
  link_action action;
  link_ac_ex_time ex_time;
};

Description

LINK_ACTION_REQ data type.

link_action_req public member functions

  1. template<typename ArchiveT> void serialize(ArchiveT & ar);

    Serialize/deserialize the LINK_ACTION_REQ data type.

    Parameters:

    ar

    The archive to/from where serialize/deserialize the data type.

link_action_req public public data members

  1. link_id id;

    Link identifier.

  2. boost::variant< null, link_addr > addr;

    PoA link address.

  3. link_action action;

    Link action.

  4. link_ac_ex_time ex_time;

    Link action execution time.


PrevUpHomeNext