SiloBuilderReminderExtensions.UseRedisReminderService Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UseRedisReminderService(IServiceCollection, Action<RedisReminderTableOptions>) |
Adds reminder storage backed by Redis. |
UseRedisReminderService(ISiloBuilder, Action<RedisReminderTableOptions>) |
Adds reminder storage backed by Redis. |
UseRedisReminderService(IServiceCollection, Action<RedisReminderTableOptions>)
Adds reminder storage backed by Redis.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseRedisReminderService(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Orleans.Configuration.RedisReminderTableOptions> configure);
static member UseRedisReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Orleans.Configuration.RedisReminderTableOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseRedisReminderService (services As IServiceCollection, configure As Action(Of RedisReminderTableOptions)) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- configure
- Action<RedisReminderTableOptions>
The delegate used to configure the reminder store.
Applies to
UseRedisReminderService(ISiloBuilder, Action<RedisReminderTableOptions>)
Adds reminder storage backed by Redis.
public static Orleans.Hosting.ISiloBuilder UseRedisReminderService(this Orleans.Hosting.ISiloBuilder builder, Action<Orleans.Configuration.RedisReminderTableOptions> configure);
static member UseRedisReminderService : Orleans.Hosting.ISiloBuilder * Action<Orleans.Configuration.RedisReminderTableOptions> -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseRedisReminderService (builder As ISiloBuilder, configure As Action(Of RedisReminderTableOptions)) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- configure
- Action<RedisReminderTableOptions>
The delegate used to configure the reminder store.