Share via


ServiceRemotingExceptionHandler Class

Definition

Provides handling of exceptions encountered in communicating with a service fabric service over remoted interfaces.

public class ServiceRemotingExceptionHandler : Microsoft.ServiceFabric.Services.Communication.Client.IExceptionHandler
type ServiceRemotingExceptionHandler = class
    interface IExceptionHandler
Public Class ServiceRemotingExceptionHandler
Implements IExceptionHandler
Inheritance
ServiceRemotingExceptionHandler
Implements

Remarks

The exceptions are handled as per the description below:

The following exceptions indicate service failover. These exceptions are handled by returning ExceptionHandlingRetryResult from the TryHandleException(ExceptionInformation, OperationRetrySettings, ExceptionHandlingResult) method. The IsTransient property of the ExceptionHandlingRetryResult is set to false, the RetryDelay property is set to a random value up to MaxRetryBackoffIntervalOnNonTransientErrors and MaxRetryCount property is set to MaxValue.
The following exceptions indicate transient error conditions and handled by returning ExceptionHandlingRetryResult from the TryHandleException(ExceptionInformation, OperationRetrySettings, ExceptionHandlingResult) method. The IsTransient property of the ExceptionHandlingRetryResult is set to true, the RetryDelay property is set to a random value up to MaxRetryBackoffIntervalOnTransientErrors and MaxRetryCount property is set to MaxValue.

Constructors

ServiceRemotingExceptionHandler()

Initializes a new instance of the ServiceRemotingExceptionHandler class with a default trace id.

ServiceRemotingExceptionHandler(String)

Initializes a new instance of the ServiceRemotingExceptionHandler class with a specified trace Id.

Explicit Interface Implementations

IExceptionHandler.TryHandleException(ExceptionInformation, OperationRetrySettings, ExceptionHandlingResult)

Examines the exception and determines how that exception can be handled.

Applies to