@@ -11,7 +11,7 @@ partial class EventStorePersistentSubscriptionsClient {
11
11
/// <exception cref="ArgumentNullException"></exception>
12
12
/// <exception cref="ArgumentException"></exception>
13
13
/// <exception cref="ArgumentOutOfRangeException"></exception>
14
- [ Obsolete ( "SubscribeAsync is no longer supported. Use SubscribeToStream with manual acks instead." , true ) ]
14
+ [ Obsolete ( "SubscribeAsync is no longer supported. Use SubscribeToStream with manual acks instead." , false ) ]
15
15
public async Task < PersistentSubscription > SubscribeAsync ( string streamName , string groupName ,
16
16
Func < PersistentSubscription , ResolvedEvent , int ? , CancellationToken , Task > eventAppeared ,
17
17
Action < PersistentSubscription , SubscriptionDroppedReason , Exception ? > ? subscriptionDropped = null ,
@@ -32,7 +32,7 @@ public async Task<PersistentSubscription> SubscribeAsync(string streamName, stri
32
32
/// <exception cref="ArgumentNullException"></exception>
33
33
/// <exception cref="ArgumentException"></exception>
34
34
/// <exception cref="ArgumentOutOfRangeException"></exception>
35
- [ Obsolete ( "SubscribeToStreamAsync is no longer supported. Use SubscribeToStream with manual acks instead." , true ) ]
35
+ [ Obsolete ( "SubscribeToStreamAsync is no longer supported. Use SubscribeToStream with manual acks instead." , false ) ]
36
36
public async Task < PersistentSubscription > SubscribeToStreamAsync ( string streamName , string groupName ,
37
37
Func < PersistentSubscription , ResolvedEvent , int ? , CancellationToken , Task > eventAppeared ,
38
38
Action < PersistentSubscription , SubscriptionDroppedReason , Exception ? > ? subscriptionDropped = null ,
@@ -102,7 +102,7 @@ public PersistentSubscriptionResult SubscribeToStream(string streamName, string
102
102
/// <summary>
103
103
/// Subscribes to a persistent subscription to $all. Messages must be manually acknowledged
104
104
/// </summary>
105
- [ Obsolete ( "SubscribeToAllAsync is no longer supported. Use SubscribeToAll with manual acks instead." , true ) ]
105
+ [ Obsolete ( "SubscribeToAllAsync is no longer supported. Use SubscribeToAll with manual acks instead." , false ) ]
106
106
public async Task < PersistentSubscription > SubscribeToAllAsync ( string groupName ,
107
107
Func < PersistentSubscription , ResolvedEvent , int ? , CancellationToken , Task > eventAppeared ,
108
108
Action < PersistentSubscription , SubscriptionDroppedReason , Exception ? > ? subscriptionDropped = null ,
0 commit comments