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: about 1 year 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-15T09:43:24.000Z (over 2 years ago)
- Last Synced: 2025-04-02T20:11:49.362Z (about 1 year 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: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Rebus.AzureBlobs
[](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();
```

---