sendSignal method
Sends a message to another side of channel.
This method does not care if message was received or somehow processed. Think about it as of UDP packet.
Implementation
void sendSignal(Message message) => sendRaw(message.toJson());
Sends a message to another side of channel.
This method does not care if message was received or somehow processed. Think about it as of UDP packet.
void sendSignal(Message message) => sendRaw(message.toJson());