internal static IBluetoothClient CreateFromListener(AndroidBthFactoryBase fcty, BluetoothSocket sock)
        {
            var cli = new AndroidBthClient(fcty);

            cli.SetupConnection(sock);
            return(cli);
        }
 protected internal virtual IBluetoothClient DoGetBluetoothClientForListener(BluetoothSocket sock)
 {
     return(AndroidBthClient.CreateFromListener(this, sock));
 }