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

Class LoadBalancingCluster

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

@SASScope("ALL") @BinaryCompatibilityOnly public final class LoadBalancingCluster extends Cluster
A load balancing cluster of IOM servers. The load balancing feature is implemented with a IOM Object Spawner that monitors the load of a set of redundant servers and directs requests for new connections to the least loaded server.
See Also:
  • Constructor Details

    • LoadBalancingCluster

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

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