FabricTransportActorRemotingProvider Class
- java.
lang. Object - ActorRemotingProvider
- microsoft.
servicefabric. actors. remoting. fabrictransport. FabricTransportActorRemotingProvider
- microsoft.
public class FabricTransportActorRemotingProvider
Sets fabric TCP transport as the default remoting provider for the actors.
Method Summary
Modifier and Type | Method and Description |
---|---|
Service |
createServiceRemotingClientFactory(ServiceRemotingCallbackClient callbackClient)
Creates a service remoting client factory to connect to the remoted actor interfaces. |
Service |
createServiceRemotingListener(FabricActorService actorService)
Creates a service remoting listener for remoting the actor interfaces. |
long |
getConnectTimeoutInMilliseconds()
Gets the connect timeout in milliseconds. This settings specifies the maximum time allowed for the connection to be established. |
long |
getKeepAliveTimeoutInSeconds()
Gets 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. |
long |
getMaxMessageSize()
Gets the maximum size of the remoting message in bytes. |
long |
getOperationTimeoutInSeconds()
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. |
void |
setConnectTimeoutInMilliseconds(long connectTimeoutInMilliseconds)
Sets the connect timeout in milliseconds. This settings specifies the maximum time allowed for the connection to be established. |
void |
setKeepAliveTimeoutInSeconds(long keepAliveTimeoutInSeconds)
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. |
void |
setMaxMessageSize(long maxMessageSize)
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. |
void |
setOperationTimeoutInSeconds(long operationTimeoutInSeconds)
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. |
Method Details
createServiceRemotingClientFactory
public ServiceRemotingClientFactory createServiceRemotingClientFactory(ServiceRemotingCallbackClient callbackClient)
Creates a service remoting client factory to connect to the remoted actor interfaces.
Parameters:
Returns:
createServiceRemotingListener
public ServiceRemotingListener createServiceRemotingListener(FabricActorService actorService)
Creates a service remoting listener for remoting the actor interfaces.
Parameters:
Returns:
getConnectTimeoutInMilliseconds
public long getConnectTimeoutInMilliseconds()
Gets the connect timeout in milliseconds. This settings specifies the maximum time allowed for the connection to be established.
Returns:
getKeepAliveTimeoutInSeconds
public long getKeepAliveTimeoutInSeconds()
Gets 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.
Returns:
getMaxMessageSize
public long getMaxMessageSize()
Gets the maximum size of the remoting message in bytes.
Returns:
getOperationTimeoutInSeconds
public long getOperationTimeoutInSeconds()
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.
Returns:
setConnectTimeoutInMilliseconds
public void setConnectTimeoutInMilliseconds(long connectTimeoutInMilliseconds)
Sets the connect timeout in milliseconds. This settings specifies the maximum time allowed for the connection to be established.
Parameters:
setKeepAliveTimeoutInSeconds
public void setKeepAliveTimeoutInSeconds(long keepAliveTimeoutInSeconds)
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.
Parameters:
setMaxMessageSize
public void setMaxMessageSize(long maxMessageSize)
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.
Parameters:
setOperationTimeoutInSeconds
public void setOperationTimeoutInSeconds(long operationTimeoutInSeconds)
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.
Parameters:
Applies to
Azure SDK for Java