public AudioStreamer(string url)
        {
            _websocket = new WebSocket (url);

              _audioBox = new Dictionary<uint, Queue> ();
              _id = null;
              _notifier = new Notifier ();
              _timer = new Timer (sendHeartbeat, null, -1, -1);

              configure ();
        }