private void HandleTransportInterrupted()

in src/main/csharp/Connection.cs [389:403]


		private void HandleTransportInterrupted()
		{
			Tracer.Debug("Transport has been interrupted.");
		
			if(this.ConnectionInterruptedListener != null && !this.closed)
			{
				try
				{
					this.ConnectionInterruptedListener();
				}
				catch
				{
				}
			}
		}