*** This class provides Binary Compatibility only, not Source Compatibility ***

Class FailoverCluster

java.lang.Object
com.sas.services.connection.Cluster
com.sas.services.connection.FailoverCluster
All Implemented Interfaces:
Serializable, Cloneable

@SASScope("ALL") @BinaryCompatibilityOnly public final class FailoverCluster extends Cluster
A failover cluster of IOM servers. A failover cluster is a set of redundant servers that is configured such that, if one server fails, another can take it's place. For the connection factory, the failover feature is only employed at the time a connection is made. If a connection attempt to one server fails, another server in the cluster is tried. If an existing connection fails unexpectedly, there is no attempt to move the connection to another server.
See Also:
  • Constructor Details

    • FailoverCluster

      public FailoverCluster(Server server)
      Construct a failover cluster with one server. This constructor is a shortcut for the following more complicated code:
       FailoverCluster(new Server[]{server})
       
      Parameters:
      server - the server to add to the cluster
    • FailoverCluster

      public FailoverCluster(Server[] servers)
      Construct a failover cluster of IOM servers.
      Parameters:
      servers - the servers to add to the cluster.
  • Method Details