sendSignal method

void sendSignal(
  1. Message message
)

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());