-
Notifications
You must be signed in to change notification settings - Fork 874
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc refactoring + integration tests (#12)
* misc refactoring + integration tests * review changes * ProduceAsync method signature changes * Deserializing Consumer + misc improvements to Consumer * Removed Consumer.Start method, added Consumer.Poll * Consumer.Consume method signature change * Consumer benchmark tests * Redirect poll queue -> consumer poll queue in Consumer * get/query watermark API improvements + integration tests * DeserializingConsumer [bug fix / API changes / examples / integration tests] * misc tidyup + documentation * Offset class equality, inequality, hash fn, ToString + unit tests * OnLog integration tests + Flush method -> CLS compliant. * string.Join.. * structs -> immutable, equality ops. unit tests. name changes. misc other. * improvement to .Consume internals * error rethink * MessageInfo -> Message * timeout related API changes * tidyup * review changes
- Loading branch information
Showing
102 changed files
with
4,368 additions
and
1,506 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 |
---|---|---|
|
@@ -5,13 +5,40 @@ confluent-kafka-dotnet - .NET Apache Kafka client | |
|
||
Forked from [rdkafka-dotnet](https://github.com/ah-/rdkafka-dotnet) by Andreas Heider | ||
|
||
Copyright (c) 2016 [Confluent Inc.](https://www.confluent.io), 2015-2016, [Andreas Heider](mailto:[email protected]) | ||
Copyright (c) 2016-2017 [Confluent Inc.](https://www.confluent.io), 2015-2017, [Andreas Heider](mailto:[email protected]) | ||
|
||
|
||
## Usage | ||
|
||
Just reference the [confluent-kafka-dotnet NuGet package](https://www.nuget.org/packages/confluent-kafka-dotnet) | ||
|
||
## Build | ||
|
||
To build the library or any test or example project, run the following from within the relevant project directory: | ||
|
||
``` | ||
dotnet restore | ||
dotnet build | ||
``` | ||
|
||
To run one of the examples, use the following from within the relevant project directory: | ||
|
||
``` | ||
dotnet run <command line args> | ||
``` | ||
|
||
To run the integration or unit tests, use the following from within the relevant project directory: | ||
|
||
``` | ||
dotnet test | ||
``` | ||
|
||
To create a nuget package, use the following from wihin `src/Confluent.Kafka`: | ||
|
||
``` | ||
dotnet pack | ||
``` | ||
|
||
## Examples | ||
|
||
## Documentation | ||
|
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.