send method
Sends frame to the peer. Silently dropped if the connection is closed.
Implementation
@override
void send(OmnyShellFrame frame) {
if (!_open) return;
_channel.sink.add(codec.encode(frame));
}
Sends frame to the peer. Silently dropped if the connection is closed.
@override
void send(OmnyShellFrame frame) {
if (!_open) return;
_channel.sink.add(codec.encode(frame));
}