Added Unsubscribe method
Clarified contribution license requirements in readme
This commit is contained in:
parent
d4cc061955
commit
c361af3b3c
@ -67,4 +67,7 @@ Master build (stable release)
|
|||||||
[![Build status](https://ci.appveyor.com/api/projects/status/cyuo0vm7admy0d9x/branch/master?svg=true)](https://ci.appveyor.com/project/MvRens/tapeti/branch/master)
|
[![Build status](https://ci.appveyor.com/api/projects/status/cyuo0vm7admy0d9x/branch/master?svg=true)](https://ci.appveyor.com/project/MvRens/tapeti/branch/master)
|
||||||
|
|
||||||
Latest build
|
Latest build
|
||||||
[![Build status](https://ci.appveyor.com/api/projects/status/cyuo0vm7admy0d9x?svg=true)](https://ci.appveyor.com/project/MvRens/tapeti)
|
[![Build status](https://ci.appveyor.com/api/projects/status/cyuo0vm7admy0d9x?svg=true)](https://ci.appveyor.com/project/MvRens/tapeti)
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
By contributing to Tapeti's main repository (https://github.com/MvRens/Tapeti) you agree to dedicate your code-base contributions to the public domain under the Unlicense license.
|
@ -84,6 +84,12 @@ namespace Tapeti
|
|||||||
ISubscriber SubscribeSync(bool startConsuming = true);
|
ISubscriber SubscribeSync(bool startConsuming = true);
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Stops the current subscriber.
|
||||||
|
/// </summary>
|
||||||
|
Task Unsubscribe();
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns an IPublisher implementation for the current connection.
|
/// Returns an IPublisher implementation for the current connection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -80,6 +80,13 @@ namespace Tapeti
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public Task Unsubscribe()
|
||||||
|
{
|
||||||
|
return subscriber?.Stop() ?? Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public IPublisher GetPublisher()
|
public IPublisher GetPublisher()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user