FabricTransportServiceRemotingProviderAttribute Class

Definition

This attributes allows to set Fabric TCP transport as the default service remoting transport provider in the assembly and customization of it.

public class FabricTransportServiceRemotingProviderAttribute : Microsoft.ServiceFabric.Services.Remoting.ServiceRemotingProviderAttribute
type FabricTransportServiceRemotingProviderAttribute = class
    inherit ServiceRemotingProviderAttribute
Public Class FabricTransportServiceRemotingProviderAttribute
Inherits ServiceRemotingProviderAttribute
Inheritance
FabricTransportServiceRemotingProviderAttribute

Constructors

FabricTransportServiceRemotingProviderAttribute()

Initializes a new instance of the FabricTransportServiceRemotingProviderAttribute class.

Properties

ConnectTimeoutInMilliseconds

Gets or Sets the connect timeout in milliseconds. This settings specifies the maximum time allowed for the connection to be established.

KeepAliveTimeoutInSeconds

Gets or Sets the keep alive timeout in seconds. This settings is useful in the scenario when the client and service are connected via load balancer that closes the connection if it is idle for some time. If keep alive timeout is configured, the connection will be kept alive by sending ping messages at that interval.

MaxMessageSize

Gets or sets the maximum size of the remoting message in bytes. If value for this property is not specified or it is less than or equals to zero, a default value of 4,194,304 bytes (4 MB) is used.

OperationTimeoutInSeconds

Gets or Sets the operation timeout in seconds. If the operation is not completed in the specified time, it will be timed out. By default, exception handler of FabricTransportServiceRemotingClientFactory retries the timed out exception. It is recommended to not change the operation timeout from it's default value.

RemotingClientVersion

Gets or sets the version of the remoting client to use.

(Inherited from ServiceRemotingProviderAttribute)
RemotingListenerVersion

Gets or sets the version that the remoting listener to use.

(Inherited from ServiceRemotingProviderAttribute)

Methods

CreateServiceRemotingClientFactoryV2(IServiceRemotingCallbackMessageHandler)

Creates a V2 service remoting client factory for connecting to the service over remoted service interfaces.

CreateServiceRemotingListeners()

Creates a V2 service remoting listener for remoting the service interface.

Applies to