-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stream transaction on Document API (#327)
* Implement changes to Document API to include the stream transaction id to the request headers. fix #322 * Added test to verify the TransactionId HeadDocumentHeader value. Moved the TransactionId header string to a constant class. fix #322 * Add Trait attribute to the new tests added in DocumentApiClientTest to skip 3.4 ArangoDB test run. fix #322
- Loading branch information
1 parent
cc09728
commit 9d1ac5e
Showing
10 changed files
with
326 additions
and
127 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace ArangoDBNetStandard | ||
{ | ||
/// <summary> | ||
/// The custom HttpHeaders that may be specified in a client request. | ||
/// </summary> | ||
public static class CustomHttpHeaders | ||
{ | ||
/// <summary> | ||
/// The header string used for Stream Transaction. | ||
/// </summary> | ||
public const string StreamTransactionHeader = "x-arango-trx-id"; | ||
} | ||
} |
Oops, something went wrong.