/// <summary>
 /// Attempts to connect to this <see cref="RemoteOutputAdapter"/>.
 /// </summary>
 protected override void AttemptConnection()
 {
     m_client = new HistorianClient(Server, Port);
     m_inputQueue = new HistorianInputQueue(() => m_client.GetDatabase<HistorianKey, HistorianValue>(InstanceName));
 }
 /// <summary>
 /// Attempts to connect to this <see cref="RemoteOutputAdapter"/>.
 /// </summary>
 protected override void AttemptConnection()
 {
     m_client     = new HistorianClient(Server, Port);
     m_inputQueue = new HistorianInputQueue(() => m_client.GetDatabase <HistorianKey, HistorianValue>(InstanceName));
 }