Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rebus-org/rebus.azureblobs
:bus: Azure Blobs-based databus storage for Rebus
https://github.com/rebus-org/rebus.azureblobs
attachment azure-blob azure-blob-storage azure-storage databus sagas
Last synced: 5 days ago
JSON representation
:bus: Azure Blobs-based databus storage for Rebus
- Host: GitHub
- URL: https://github.com/rebus-org/rebus.azureblobs
- Owner: rebus-org
- License: other
- Created: 2019-02-14T21:47:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-15T09:43:24.000Z (almost 1 year ago)
- Last Synced: 2024-05-01T11:48:09.816Z (7 months ago)
- Topics: attachment, azure-blob, azure-blob-storage, azure-storage, databus, sagas
- Language: C#
- Homepage: https://mookid.dk/category/rebus
- Size: 1.84 MB
- Stars: 3
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Rebus.AzureBlobs
[![install from nuget](https://img.shields.io/nuget/v/Rebus.AzureBlobs.svg?style=flat-square)](https://www.nuget.org/packages/Rebus.AzureBlobs)
Provides Azure Blobs-based implementation for [Rebus](https://github.com/rebus-org/Rebus) of
* data bus storage (in blobs)
* saga auditing snapshots (blobs)You can configure the blob-based data bus like this:
```csharp
var storageAccount = CloudStorageAccount.Parse(connectionString);Configure.With(...)
.(...)
.DataBus(d => d.StoreInBlobStorage(storageAccount, "container-name"))
.Start();```
or, if you're using Rebus 5 or earlier, you need to do it like this:
```csharp
var storageAccount = CloudStorageAccount.Parse(connectionString);Configure.With(...)
.(...)
.Options(o => o.EnableDataBus().StoreInBlobStorage(storageAccount, "container-name"))
.Start();```
![](https://raw.githubusercontent.com/rebus-org/Rebus/master/artwork/little_rebusbus2_copy-200x200.png)
---