Package org.jboss.modcluster.config
Interface NodeConfiguration
-
- All Known Implementing Classes:
ModClusterConfig,ModClusterListener,ModClusterListener,NodeConfigurationImpl
public interface NodeConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBalancer()Name of the balancer.booleangetFlushPackets()Allows controlling flushing of packets.intgetFlushWait()Time to wait before flushing packets.StringgetLoadBalancingGroup()Indicates the group of servers to which this node belongs.intgetNodeTimeout()Maximum time on seconds for idle connections the proxy will wait to connect to the node.intgetPing()Time to wait for a pong answer to a ping.intgetSmax()Soft maximum inactive connection count.intgetTtl()Maximum time on seconds for idle connections above smax.
-
-
-
Method Detail
-
getLoadBalancingGroup
String getLoadBalancingGroup()
Indicates the group of servers to which this node belongs. If defined, mod_cluster will always attempt to failover a given request to a node in the same group as the failed node. This property is equivalent to the mod_jk domain directive.
-
getFlushPackets
boolean getFlushPackets()
Allows controlling flushing of packets.
-
getFlushWait
int getFlushWait()
Time to wait before flushing packets.
-
getPing
int getPing()
Time to wait for a pong answer to a ping.
-
getSmax
int getSmax()
Soft maximum inactive connection count.
-
getTtl
int getTtl()
Maximum time on seconds for idle connections above smax.
-
getNodeTimeout
int getNodeTimeout()
Maximum time on seconds for idle connections the proxy will wait to connect to the node.
-
getBalancer
String getBalancer()
Name of the balancer.
-
-