Microsoft.Orleans.Streaming.AzureStorage
9.2.0-preview3
Prefix Reserved
dotnet add package Microsoft.Orleans.Streaming.AzureStorage --version 9.2.0-preview3
NuGet\Install-Package Microsoft.Orleans.Streaming.AzureStorage -Version 9.2.0-preview3
<PackageReference Include="Microsoft.Orleans.Streaming.AzureStorage" Version="9.2.0-preview3" />
<PackageVersion Include="Microsoft.Orleans.Streaming.AzureStorage" Version="9.2.0-preview3" />
<PackageReference Include="Microsoft.Orleans.Streaming.AzureStorage" />
paket add Microsoft.Orleans.Streaming.AzureStorage --version 9.2.0-preview3
#r "nuget: Microsoft.Orleans.Streaming.AzureStorage, 9.2.0-preview3"
#addin nuget:?package=Microsoft.Orleans.Streaming.AzureStorage&version=9.2.0-preview3&prerelease
#tool nuget:?package=Microsoft.Orleans.Streaming.AzureStorage&version=9.2.0-preview3&prerelease
Microsoft Orleans Streaming for Azure Storage Queues
Introduction
Microsoft Orleans Streaming for Azure Storage provides a stream provider implementation for Orleans using Azure Storage Queues. This allows for publishing and subscribing to streams of events with Azure Storage Queues as the underlying messaging infrastructure.
Getting Started
To use this package, install it via NuGet:
dotnet add package Microsoft.Orleans.Streaming.AzureStorage
Example - Configuring Azure Storage Queues Streaming
using Microsoft.Extensions.Hosting;
using Orleans.Hosting;
using Orleans.Streams;
var builder = Host.CreateApplicationBuilder(args)
.UseOrleans(siloBuilder =>
{
siloBuilder
.UseLocalhostClustering()
// Configure Azure Storage Queues as a stream provider
.AddAzureQueueStreams(
name: "AzureQueueStreamProvider",
b => b.ConfigureAzureQueue(ob => ob.Configure((options, dep) =>
{
options.ConfigureTestDefaults();
options.QueueNames = Enumerable.Range(0, 8).Select(num => $"{dep.Value.ClusterId}-{num}").ToList();
})));
});
// Run the host
await builder.RunAsync();
Example - Using Azure Storage Queue Streams in a Grain
// Producer grain
public class ProducerGrain : Grain, IProducerGrain
{
private IAsyncStream<string> _stream;
public override Task OnActivateAsync(CancellationToken cancellationToken)
{
// Get a reference to a stream
var streamProvider = GetStreamProvider("AzureQueueStreamProvider");
_stream = streamProvider.GetStream<string>(Guid.NewGuid(), "MyStreamNamespace");
return base.OnActivateAsync(cancellationToken);
}
public async Task SendMessage(string message)
{
// Send a message to the stream
await _stream.OnNextAsync(message);
}
}
// Consumer grain
public class ConsumerGrain : Grain, IConsumerGrain, IAsyncObserver<string>
{
private StreamSubscriptionHandle<string> _subscription;
public override async Task OnActivateAsync(CancellationToken cancellationToken)
{
// Get a reference to a stream
var streamProvider = GetStreamProvider("AzureQueueStreamProvider");
var stream = streamProvider.GetStream<string>(this.GetPrimaryKey(), "MyStreamNamespace");
// Subscribe to the stream
_subscription = await stream.SubscribeAsync(this);
await base.OnActivateAsync(cancellationToken);
}
public Task OnNextAsync(string item, StreamSequenceToken token = null)
{
Console.WriteLine($"Received message: {item}");
return Task.CompletedTask;
}
public Task OnCompletedAsync()
{
Console.WriteLine("Stream completed");
return Task.CompletedTask;
}
public Task OnErrorAsync(Exception ex)
{
Console.WriteLine($"Stream error: {ex.Message}");
return Task.CompletedTask;
}
}
Documentation
For more comprehensive documentation, please refer to:
Feedback & Contributing
- If you have any issues or would like to provide feedback, please open an issue on GitHub
- Join our community on Discord
- Follow the @msftorleans Twitter account for Orleans announcements
- Contributions are welcome! Please review our contribution guidelines
- This project is licensed under the MIT license
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Azure.Core (>= 1.44.1)
- Azure.Data.Tables (>= 12.9.1)
- Azure.Identity (>= 1.13.1)
- Azure.Storage.Blobs (>= 12.23.0)
- Azure.Storage.Queues (>= 12.21.0)
- Microsoft.AspNetCore.Connections.Abstractions (>= 8.0.11)
- Microsoft.CodeAnalysis.Analyzers (>= 3.11.0)
- Microsoft.CodeAnalysis.Common (>= 4.5.0)
- Microsoft.CodeAnalysis.Workspaces.Common (>= 4.5.0)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.Configuration.Json (>= 8.0.1)
- Microsoft.Extensions.DependencyInjection (>= 8.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.DependencyModel (>= 8.0.2)
- Microsoft.Extensions.Hosting (>= 8.0.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Logging.Console (>= 8.0.1)
- Microsoft.Extensions.Logging.Debug (>= 8.0.1)
- Microsoft.Extensions.ObjectPool (>= 8.0.11)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
- Microsoft.Orleans.Analyzers (>= 9.2.0-preview3)
- Microsoft.Orleans.CodeGenerator (>= 9.2.0-preview3)
- Microsoft.Orleans.Streaming (>= 9.2.0-preview3)
- Newtonsoft.Json (>= 13.0.3)
- System.Collections.Immutable (>= 8.0.0)
- System.IO.Hashing (>= 8.0.0)
- System.IO.Pipelines (>= 8.0.0)
- System.Memory.Data (>= 8.0.1)
- System.Net.NameResolution (>= 4.3.0)
- System.Text.Json (>= 8.0.5)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Microsoft.Orleans.Streaming.AzureStorage:
Package | Downloads |
---|---|
Blauhaus.Orleans
Package Description |
|
Blauhaus.EVACS.Orleans
Package Description |
|
Microsoft.Orleans.OrleansAzureUtils
Support library for hosting Orleans on Microsoft Azure. |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on Microsoft.Orleans.Streaming.AzureStorage:
Repository | Stars |
---|---|
Dotnet-Boxed/Templates
.NET project templates with batteries included, providing the minimum amount of code required to get you going faster.
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
J-Tech-Japan/Sekiban
Sekiban - an Opinionated Event Sourcing and CQRS Framework using C#. It can store data into Azure Cosmos DB, AWS Dynamo DB or Postgres
|
Version | Downloads | Last updated |
---|---|---|
9.2.0-preview3 | 280 | 6/10/2025 |
9.2.0-preview2 | 138 | 6/4/2025 |
9.2.0-preview1 | 420 | 4/4/2025 |
9.1.2 | 26,669 | 2/13/2025 |
9.0.1 | 7,381 | 11/23/2024 |
9.0.0 | 1,924 | 11/14/2024 |
8.2.0 | 39,255 | 7/12/2024 |
8.2.0-preview1 | 216 | 5/22/2024 |
8.1.0 | 22,567 | 4/17/2024 |
8.1.0-preview3 | 280 | 3/11/2024 |
8.1.0-preview2 | 161 | 2/23/2024 |
8.1.0-preview1 | 156 | 2/13/2024 |
8.0.0 | 19,912 | 1/5/2024 |
8.0.0-rc2 | 246 | 12/20/2023 |
8.0.0-rc1 | 231 | 12/4/2023 |
7.2.7 | 200 | 10/15/2024 |
7.2.6 | 5,904 | 3/9/2024 |
7.2.5 | 264 | 2/22/2024 |
7.2.4 | 12,162 | 12/2/2023 |
7.2.3 | 9,542 | 11/3/2023 |
7.2.2 | 2,371 | 10/16/2023 |
7.2.1 | 32,405 | 7/11/2023 |
7.2.0 | 2,649 | 7/7/2023 |
7.1.2 | 10,119 | 4/19/2023 |
7.1.1 | 4,226 | 3/23/2023 |
7.1.0 | 10,295 | 2/1/2023 |
7.0.0 | 2,865 | 11/8/2022 |
7.0.0-rc2 | 269 | 10/19/2022 |
4.0.0-preview2 | 4,705 | 8/4/2022 |
4.0.0-preview1 | 2,017 | 2/10/2022 |
3.8.0 | 162 | 5/6/2025 |
3.8.0-preview5 | 220 | 5/12/2025 |
3.8.0-preview3 | 184 | 4/8/2025 |
3.8.0-preview2 | 121 | 4/4/2025 |
3.8.0-preview1 | 183 | 3/31/2025 |
3.7.2 | 14,473 | 5/10/2024 |
3.7.1 | 31,425 | 5/27/2023 |
3.7.0 | 6,731 | 3/23/2023 |
3.6.5 | 450,375 | 8/15/2022 |
3.6.4 | 5,974 | 8/10/2022 |
3.6.3 | 38,350 | 8/4/2022 |
3.6.2 | 509,394 | 4/15/2022 |
3.6.1 | 17,783 | 4/5/2022 |
3.6.0 | 33,971 | 1/20/2022 |
3.5.1 | 78,259 | 11/8/2021 |
3.5.0 | 26,066 | 9/3/2021 |
3.4.4 | 1,916 | 10/4/2021 |
3.4.3 | 3,051 | 6/3/2021 |
3.4.2 | 10,100 | 4/5/2021 |
3.4.1 | 6,304 | 2/3/2021 |
3.4.0 | 21,308 | 1/6/2021 |
3.4.0-rc1 | 584 | 12/9/2020 |
3.3.0 | 14,590 | 9/9/2020 |
3.3.0-rc2 | 557 | 9/2/2020 |
3.3.0-rc1 | 523 | 8/19/2020 |
3.2.2 | 5,456 | 7/22/2020 |
3.2.1 | 2,218 | 7/2/2020 |
3.2.0 | 3,975 | 6/4/2020 |
3.2.0-rc2 | 753 | 5/20/2020 |
3.2.0-rc1 | 594 | 5/7/2020 |
3.1.7 | 1,207 | 5/19/2020 |
3.1.6 | 6,570 | 4/16/2020 |
3.1.5 | 1,188 | 4/9/2020 |
3.1.4 | 12,817 | 3/26/2020 |
3.1.3 | 5,441 | 3/16/2020 |
3.1.2 | 4,183 | 3/5/2020 |
3.1.0 | 1,307 | 2/23/2020 |
3.1.0-rc3 | 656 | 2/13/2020 |
3.1.0-rc2 | 667 | 2/12/2020 |
3.1.0-rc1 | 690 | 2/10/2020 |
3.0.2 | 7,539 | 12/12/2019 |
3.0.1 | 2,219 | 11/27/2019 |
3.0.0 | 1,816 | 10/24/2019 |
3.0.0-rc2 | 611 | 10/16/2019 |
3.0.0-rc1 | 565 | 10/9/2019 |
3.0.0-beta1 | 622 | 8/16/2019 |
2.4.5 | 6,326 | 12/29/2019 |
2.4.4 | 3,459 | 11/27/2019 |
2.4.3 | 5,460 | 10/10/2019 |
2.4.2 | 4,776 | 8/31/2019 |
2.4.1 | 11,093 | 8/14/2019 |
2.4.0 | 4,966 | 8/8/2019 |
2.3.6 | 22,067 | 7/24/2019 |
2.3.5 | 3,682 | 6/14/2019 |
2.3.4 | 2,731 | 6/4/2019 |
2.3.3 | 2,465 | 6/2/2019 |
2.3.2 | 4,009 | 5/9/2019 |
2.3.1 | 2,844 | 4/26/2019 |
2.3.0 | 8,017 | 3/20/2019 |
2.3.0-rc2 | 2,069 | 3/13/2019 |
2.3.0-rc1 | 1,841 | 3/4/2019 |
2.2.4 | 3,220 | 2/25/2019 |
2.2.3 | 3,387 | 1/17/2019 |
2.2.0 | 7,850 | 12/13/2018 |
2.2.0-rc1 | 2,054 | 12/4/2018 |
2.2.0-beta1 | 2,611 | 10/21/2018 |
2.1.2 | 10,217 | 10/11/2018 |
2.1.0 | 3,397 | 9/28/2018 |
2.1.0-rc2 | 2,476 | 9/21/2018 |
2.1.0-rc1 | 2,499 | 9/14/2018 |
2.1.0-beta1 | 1,037 | 8/27/2018 |
2.0.0 | 15,749 | 3/28/2018 |
2.0.0-rc2 | 3,194 | 3/13/2018 |
2.0.0-rc1 | 4,083 | 2/26/2018 |
2.0.0-beta3 | 4,538 | 12/21/2017 |
2.0.0-beta2 | 2,790 | 12/11/2017 |