1 instantiation of OrleansService
Aspire.Hosting.Orleans (1)
OrleansServiceExtensions.cs (1)
30=> new(builder, name);
66 references to OrleansService
Aspire.Hosting.Orleans (65)
OrleansService.cs (1)
14/// <summary>Initializes a new <see cref="OrleansService"/> instance.</summary>
OrleansServiceClient.cs (2)
11public sealed class OrleansServiceClient(OrleansService service) 16public OrleansService Service { get; } = service;
OrleansServiceExtensions.cs (62)
27public static OrleansService AddOrleans( 39public static OrleansService WithClusterId( 40this OrleansService orleansServiceBuilder, 53/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithClusterId(OrleansService, string)"/> instead.</remarks> 55public static OrleansService WithClusterId( 56this OrleansService orleansServiceBuilder, 70public static OrleansService WithServiceId( 71this OrleansService orleansServiceBuilder, 84/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithServiceId(OrleansService, string)"/> instead.</remarks> 86public static OrleansService WithServiceId( 87this OrleansService orleansServiceBuilder, 101public static OrleansService WithClustering( 102this OrleansService orleansServiceBuilder, 112/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithClustering(OrleansService, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 114public static OrleansService WithClustering( 115this OrleansService orleansServiceBuilder, 128public static OrleansService WithDevelopmentClustering( 129this OrleansService orleansServiceBuilder) 138/// <remarks>This resource name is the name the application will use to resolve the provider. This method is not available in polyglot app hosts. Use <see cref="WithGrainStorage(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 140public static OrleansService WithGrainStorage( 141this OrleansService orleansServiceBuilder, 153public static OrleansService WithGrainStorage( 154this OrleansService orleansServiceBuilder, 166/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithGrainStorage(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 168public static OrleansService WithGrainStorage( 169this OrleansService orleansServiceBuilder, 184public static OrleansService WithMemoryGrainStorage( 185this OrleansService orleansServiceBuilder, 195/// <remarks>This resource name is the name the application will use to resolve the provider. This method is not available in polyglot app hosts. Use <see cref="WithStreaming(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 197public static OrleansService WithStreaming( 198this OrleansService orleansServiceBuilder, 210public static OrleansService WithStreaming( 211this OrleansService orleansServiceBuilder, 223/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithStreaming(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 225public static OrleansService WithStreaming( 226this OrleansService orleansServiceBuilder, 241public static OrleansService WithMemoryStreaming( 242this OrleansService orleansServiceBuilder, 253/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithBroadcastChannel(OrleansService, string)"/> instead.</remarks> 255public static OrleansService WithBroadcastChannel( 256this OrleansService orleansServiceBuilder, 271public static OrleansService WithBroadcastChannel( 272this OrleansService orleansServiceBuilder, 283public static OrleansService WithReminders( 284this OrleansService orleansServiceBuilder, 294/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithReminders(OrleansService, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 296public static OrleansService WithReminders( 297this OrleansService orleansServiceBuilder, 310public static OrleansService WithMemoryReminders( 311this OrleansService orleansServiceBuilder) 323/// <remarks>This resource name is the name the application will use to resolve the provider. This method is not available in polyglot app hosts. Use <see cref="WithGrainDirectory(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 325public static OrleansService WithGrainDirectory( 326this OrleansService orleansServiceBuilder, 338public static OrleansService WithGrainDirectory( 339this OrleansService orleansServiceBuilder, 351/// <remarks>This method is not available in polyglot app hosts. Use <see cref="WithGrainDirectory(OrleansService, string, IResourceBuilder{IResourceWithConnectionString})"/> instead.</remarks> 353public static OrleansService WithGrainDirectory( 354this OrleansService orleansServiceBuilder, 368public static OrleansServiceClient AsClient(this OrleansService orleansService) 383OrleansService orleansService) 391OrleansService orleansService, 395var res = orleansService;
Orleans.AppHost (1)
Program.cs (1)
7var orleans = builder.AddOrleans("my-app")