send method

void send(
  1. I data
)
override

Send data to the Process

Note

  • Sending null is the equivalent of calling kill for one on the Processes in the group

Implementation

void send(I data) {
  _procGroup[_selectedProc].send(data);

  _selectedProc = (_selectedProc + 1) % _activeProcCount;
}