/// <summary>
 /// This function will invoke the gap callback on the user supplied callback implementation.
 /// </summary>
 internal void InvokeGap()
 {
     if (null != mCallback)
     {
         // Invoke the callback
         mCallback.onGap(mSubscription);
     }
 }