We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f43a3fd commit e0d59e0Copy full SHA for e0d59e0
1 file changed
Algo/Storages/RemoteMarketDataDrive.cs
@@ -110,6 +110,17 @@ public RemoteMarketDataDrive(EndPoint address)
110
{
111
}
112
113
+ /// <summary>
114
+ /// Initializes a new instance of the <see cref="RemoteMarketDataDrive"/>.
115
+ /// </summary>
116
+ /// <param name="address">Server address.</param>
117
+ /// <param name="adapter">Message adapter.</param>
118
+ [Obsolete("Use IAsyncMessageAdapter overload.")]
119
+ public RemoteMarketDataDrive(EndPoint address, IMessageAdapter adapter)
120
+ : this(address, (IAsyncMessageAdapter)adapter)
121
+ {
122
+ }
123
+
124
/// <summary>
125
/// Initializes a new instance of the <see cref="RemoteMarketDataDrive"/>.
126
/// </summary>
0 commit comments