| |
|
| org.apache.catalina.cluster.CatalinaCluster
All known Subclasses: org.apache.catalina.cluster.tcp.SimpleTcpCluster,
CatalinaCluster | public interface CatalinaCluster extends Cluster,ListenCallback(Code) | | A CatalinaCluster interface allows to plug in and out the
different cluster implementations
author: Filip Hanik version: $Revision: 1.6 $, $Date: 2004/06/04 20:22:27 $ |
Field Summary | |
public String | info Descriptive information about this component implementation. |
info | public String info(Code) | | Descriptive information about this component implementation.
|
addValve | public void addValve(Valve valve)(Code) | | |
getLocalMember | public Member getLocalMember()(Code) | | Return the member that represents this node.
Member |
getLogger | public Log getLogger()(Code) | | Returns the associates logger with this cluster
Log |
getMembers | public Member[] getMembers()(Code) | | returns all the members currently participating in the cluster
Member[] |
send | public void send(ClusterMessage msg)(Code) | | Sends a message to all the members in the cluster
Parameters: msg - SessionMessage |
send | public void send(ClusterMessage msg, Member dest)(Code) | | Sends a message to a specific member in the cluster
Parameters: msg - SessionMessage Parameters: dest - Member |
start | public void start() throws Exception(Code) | | Start the cluster, the owning container will invoke this
throws: Exception - - if failure to start cluster |
stop | public void stop() throws LifecycleException(Code) | | Stops the cluster, the owning container will invoke this
throws: LifecycleException - |
|
|
|