Table of Contents

Interface IReconnectionAttempt

Namespace
PushTechnology.ClientInterface.Client.Session.Reconnection
Assembly
Diffusion.Client.dll

A single reconnection attempt that can either be started or aborted.

public interface IReconnectionAttempt

Methods

Abort()

Aborts the reconnection attempt.

void Abort()

Remarks

This method will always throw a System.InvalidOperationException to indicate that the reconnection attempt has been aborted. If you implement a custom IReconnectionStrategy, do not catch this exception. If for some reason you need catch the exception, ensure it is rethrown. Otherwise the reconnection attempt will not be aborted successfully.

Exceptions

InvalidOperationException

The reconnection attempt has been aborted.

Start()

Starts the reconnection attempt.

void Start()