public void Start()

in src/main/csharp/Connection.cs [53:66]


        public void Start()
        {
            if(started.CompareAndSet(false, true))
            {
                try
                {
                    this.tibcoConnection.Start();
                }
                catch(Exception ex)
                {
                    ExceptionUtil.WrapAndThrowNMSException(ex);
                }
            }
        }