mirror of https://github.com/abpframework/abp.git
Browse Source
Related to https://github.com/abpframework/abp/pull/19579 and https://github.com/abpframework/abp/pull/19605pull/19742/head
2 changed files with 25 additions and 1 deletions
@ -1,11 +1,19 @@ |
|||
namespace Volo.Abp.AspNetCore.SignalR; |
|||
using System; |
|||
|
|||
namespace Volo.Abp.AspNetCore.SignalR; |
|||
|
|||
public class AbpSignalROptions |
|||
{ |
|||
public HubConfigList Hubs { get; } |
|||
|
|||
/// <summary>
|
|||
/// Default: 5 seconds.
|
|||
/// </summary>
|
|||
public TimeSpan? CheckDynamicClaimsInterval { get; set; } |
|||
|
|||
public AbpSignalROptions() |
|||
{ |
|||
Hubs = new HubConfigList(); |
|||
CheckDynamicClaimsInterval = TimeSpan.FromSeconds(5); |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue