UNPKG

@microsoft/signalr

Version:
8 lines (7 loc) 497 B
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /** Options provided to the 'withStatefulReconnect' method on {@link @microsoft/signalr.HubConnectionBuilder} to configure options for Stateful Reconnect. */ export interface IStatefulReconnectOptions { /** Amount of bytes we'll buffer when using Stateful Reconnect until applying backpressure to sends from the client. */ bufferSize: number; }