Macro mpstthree::create_send_mpst_session_1[][src]

macro_rules! create_send_mpst_session_1 {
    ($func_name : ident, $receiver : ident, $sender : ident) => { ... };
}
This is supported on crate feature macros_simple only.
Expand description

Create a send function to send on the first binary session from any kind of role. Must be used with MeshedChannels.

Arguments

  • The name of the new send function
  • The name of the receiver
  • The name of the sender

Example

use mpstthree::meshedchannels::MeshedChannels;
use mpstthree::{create_normal_role, create_send_mpst_session_1};

create_normal_role!(RoleA, RoleADual);
create_normal_role!(RoleC, RoleCDual);

create_send_mpst_session_1!(send_mpst_c_to_a, RoleA, RoleC);

This macro is available only if MultiCrusty is built with the "macros_simple" feature.