When any connection with queries is lost, The LiveViewMultiConnection will wait a random amount of time from 0 to this value (in seconds) before trying to reconnect those queries to another server. The purpose is that when one server with many clients goes down, it will prevent the client from all trying to reconnect to one server all at the same time. Some clients will be delayed, rather than all clients plus the clients already connected to the secondary server being delayed.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public int MaxRandomReconnectDelay { get; set; }
Public Property MaxRandomReconnectDelay As Integer
	Get
	Set
public:
property int MaxRandomReconnectDelay {
	int get ();
	void set (int value);
}

See Also