sendToAll method

Stream<A> sendToAll(
  1. M message
)

Send a message to all members of this group.

The responses from each Actor are emitted by the returned Stream in the order in which they are sent, so the order of the Actors does not matter.

Implementation

Stream<A> sendToAll(M message) {
  return _group.sendToAll(message);
}