-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ae6a37
commit 7a6b5a6
Showing
1 changed file
with
5 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
# NServiceBus.Callbacks | ||
|
||
This library provides extensions for NServiceBus which allow to define a callback on send operations. Callbacks can be used to map a response message to a stateful resource (e.g. a HTTP Request) without the need to use a message handler. | ||
NServiceBus.Callbacks is an extension for NServiceBus to support defining callbacks on send operations. Callbacks can be used to map a response message to a stateful resource (e.g. an HTTP Request) without needing to use a message handler. | ||
|
||
It is part of the [Particular Service Platform](https://particular.net/service-platform), which includes [NServiceBus](https://particular.net/nservicebus) and tools to build, monitor, and debug distributed systems. | ||
|
||
### Getting started | ||
See the [Client-side callbacks documentation](https://docs.particular.net/nservicebus/messaging/callbacks) for more details on how to use it. | ||
|
||
To get started, install the package via NuGet: | ||
|
||
``` | ||
Install-Package NServiceBus.Callbacks | ||
``` | ||
|
||
### Testing callbacks | ||
## Running tests locally | ||
|
||
To test callbacks, install the testing package via NuGet: | ||
|
||
``` | ||
Install-Package NServiceBus.Callbacks.Testing | ||
``` | ||
|
||
For more information please read our documentation about [Handling Responses on the Client Side](http://docs.particular.net/nservicebus/messaging/handling-responses-on-the-client-side) and the [Callbacks sample project](http://docs.particular.net/samples/callbacks/). | ||
``` |