bindChannel static method
bind channel to host
Implementation
static void bindChannel(String hostName, Channel channel) {
if (_hosts.containsKey(hostName)) {
_hosts[hostName]!.bindChannel(channel);
} else {
throw HostNotFoundException(name: hostName);
}
}