Package org.jboss.modcluster.config
Interface NodeConfiguration
- All Known Implementing Classes:
ModClusterConfig
,ModClusterListener
,ModClusterListener
,NodeConfigurationImpl
public interface NodeConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionName of the balancer.boolean
Allows controlling flushing of packets.int
Time to wait before flushing packets.Indicates the group of servers to which this node belongs.int
Maximum time on seconds for idle connections the proxy will wait to connect to the node.int
getPing()
Time to wait for a pong answer to a ping.int
getSmax()
Soft maximum inactive connection count.int
getTtl()
Maximum time on seconds for idle connections above smax.
-
Method Details
-
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.
-