Interface ReconnectPolicyInterface
-
public interface ReconnectPolicyInterface
A policy that can be applied to an engine client to control when it can reconnect.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
canConnectNow(EngineClientInterface bean)
decide whether the given bean should be allowed to reconnect nowvoid
deregister(EngineClientInterface bean)
notification that this policy is no longer used to determine when to connect.
-
-
-
Method Detail
-
canConnectNow
boolean canConnectNow(EngineClientInterface bean)
decide whether the given bean should be allowed to reconnect now
-
deregister
void deregister(EngineClientInterface bean)
notification that this policy is no longer used to determine when to connect.
-
-