in src/main/csharp/Connection.cs [80:93]
public void Stop()
{
try
{
if(started.CompareAndSet(true, false))
{
this.tibcoConnection.Stop();
}
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
}
}