public virtual void OnNewBytes(long bytes)
            {
                IConnectionListener activeListener = this.enclosingInstance.GetActiveListener(this.currPhase);

                if (activeListener != null)
                {
                    try
                    {
                        activeListener.OnNewBytes(bytes);
                    }
                    catch (Exception)
                    {
                    }
                }
            }