public HistoryEmulationMessageChannel(HistoryEmulationConnector parent)
            {
                _parent = parent ?? throw new ArgumentNullException(nameof(parent));

                _messageQueue = new MessagePriorityQueue();
                _messageQueue.Close();
            }