| ClientNetworkConfigSetRedoOperation Method |
If true, client will redo the operations that were executing on the server and client lost the connection.
This can be because of network, or simply because the member died. However it is not clear whether the
application is performed or not. For idempotent operations this is harmless, but for non-idempotent ones
retrying can cause to undesirable effects. Note that the redo can perform on any member.
If false, the operation will throw exception
Namespace:
Hazelcast.Config
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax public virtual ClientNetworkConfig SetRedoOperation(
bool redoOperation
)
Public Overridable Function SetRedoOperation (
redoOperation As Boolean
) As ClientNetworkConfig
public:
virtual ClientNetworkConfig^ SetRedoOperation(
bool redoOperation
)
abstract SetRedoOperation :
redoOperation : bool -> ClientNetworkConfig
override SetRedoOperation :
redoOperation : bool -> ClientNetworkConfig
Parameters
- redoOperation
- Type: SystemBoolean
true if redo operations are enabled
Return Value
Type:
ClientNetworkConfigClientNetworkConfig for chaining
See Also