The insertion operator for jss::actor_ref
provides a simplified
means of sending a message to an actor. This can be used to send multiple
messages in a chain.
template<typename Msg> actor_ref const& operator<<(actor_ref const& a,Msg&& msg);
a.send(std::forward<Msg>(msg))
a
#include <jss/actor.hpp>