@@ -22,10 +22,6 @@ public interface IOpenNettyService
22
22
/// <param name="address">The address, if applicable.</param>
23
23
/// <param name="medium">The medium to use or <see langword="null"/> to use the default medium.</param>
24
24
/// <param name="mode">The mode to use or <see langword="null"/> to use the default mode.</param>
25
- /// <param name="filter">
26
- /// The delegate called by the service to filter the returned dimensions.
27
- /// If set to <see langword="null"/>, only the requested dimension is returned.
28
- /// </param>
29
25
/// <param name="gateway">The gateway used to send the message.</param>
30
26
/// <param name="options">The transmission options to use.</param>
31
27
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
@@ -39,7 +35,6 @@ public interface IOpenNettyService
39
35
OpenNettyAddress ? address = null ,
40
36
OpenNettyMedium ? medium = null ,
41
37
OpenNettyMode ? mode = null ,
42
- Func < OpenNettyDimension , ValueTask < bool > > ? filter = null ,
43
38
OpenNettyGateway ? gateway = null ,
44
39
OpenNettyTransmissionOptions options = OpenNettyTransmissionOptions . None ,
45
40
CancellationToken cancellationToken = default ) ;
@@ -106,10 +101,6 @@ ValueTask ExecuteCommandAsync(
106
101
/// <param name="address">The address, if applicable.</param>
107
102
/// <param name="medium">The medium to use or <see langword="null"/> to use the default medium.</param>
108
103
/// <param name="mode">The mode to use or <see langword="null"/> to use the default mode.</param>
109
- /// <param name="filter">
110
- /// The delegate called by the service to filter the returned dimensions.
111
- /// If set to <see langword="null"/>, only the requested dimension is returned.
112
- /// </param>
113
104
/// <param name="gateway">The gateway used to send the message.</param>
114
105
/// <param name="options">The transmission options to use.</param>
115
106
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
@@ -122,7 +113,6 @@ ValueTask<ImmutableArray<string>> GetDimensionAsync(OpenNettyProtocol protocol,
122
113
OpenNettyAddress ? address = null ,
123
114
OpenNettyMedium ? medium = null ,
124
115
OpenNettyMode ? mode = null ,
125
- Func < OpenNettyDimension , ValueTask < bool > > ? filter = null ,
126
116
OpenNettyGateway ? gateway = null ,
127
117
OpenNettyTransmissionOptions options = OpenNettyTransmissionOptions . None ,
128
118
CancellationToken cancellationToken = default ) ;
0 commit comments