Skip to content

Commit 823630b

Browse files
author
Marc Piechura
authored
Merge pull request #26 from Silv3rcircl3/small_doc_updates
adjust ISubscription.Cancel comment and Readme
2 parents 61a19b5 + 673ec4a commit 823630b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ nioSelectorThreadOrigin | map(f) filter(p) consumeTo(toNioSelectorOutput)
206206
207207
All of these variants are "asynchronous streams". They all have their place and each has different tradeoffs including performance and implementation complexity.
208208
209-
The Reactive Streams contract allows implementations the flexibility to manage resources and scheduling and mix asynchronous and synchronous processing within the bounds of a non-blocking, asynchronous, push-based stream.
209+
The Reactive Streams contract allows implementations the flexibility to manage resources and scheduling and mix asynchronous and synchronous processing within the bounds of a non-blocking, asynchronous, dynamic push-pull stream.
210210
211211
In order to allow fully asynchronous implementations of all participating API elements—`IPublisher`/`ISubscription`/`ISubscriber`/`IProcessor`—all methods defined by these interfaces return `void`.
212212

src/api/Reactive.Streams/ISubscription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public interface ISubscription
4242
/// Request the <see cref="IPublisher{T}"/> to stop sending data and clean up resources.
4343
/// </para>
4444
/// <para>
45-
/// Data may still be sent to meet previously signalled demand after calling cancel as this request is asynchronous.
45+
/// Data may still be sent to meet previously signalled demand after calling cancel.
4646
/// </para>
4747
/// </summary>
4848
void Cancel();

0 commit comments

Comments
 (0)