Index

Object PCRE.LoadBalancer


Variable Index

 o LOAD_FACTOR
 
 o ROUND_ROBIN
 

Method Index

 o getConnectedClient()
Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" and the default load balancing algorithm of load-factor.
 o getConnectedClient(int)
Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" and the supplied algorithm constant.
 o getConnectedClient(String)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the default load balancing algorithm of load-factor.
 o getConnectedClient(String, int)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the supplied algorithm constant.
 o getReportServerName()
Returns the ip address of the report server to use using the default load channel name and the default load balancing algorithm of load-factor. Deprecated
 o getReportServerName(int)
Returns the ip address of the report server to use using the default load channel name and the supplied load balancing algorithm (LoadBalancer constant). Deprecated
 o getReportServerName(String)
Returns the ip address of the report server to use using the supplied load channel name and the default load balancing algorithm of load-factor. Deprecated
 o getReportServerName(String, int)
Returns the ip address of the report server to use using the supplied load channel name and the supplied load balancing algorithm (LoadBalancer constant). Deprecated

Field Detail

 o LOAD_FACTOR
int LOAD_FACTOR
 o ROUND_ROBIN
int ROUND_ROBIN

Method Detail

 o getConnectedClient
PCREApplicationClient getConnectedClient()
          Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" and the default load balancing algorithm of load-factor. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(int algorithm)
          Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" and the supplied algorithm constant. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(String chnlName)
          Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the default load balancing algorithm of load-factor. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(String channel,
                                         int algorithm)
          Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the supplied algorithm constant. It is not necessary to call the connect method on the client object.
 o getReportServerName
String getReportServerName()
Note: getReportServerName() is deprecated.As of Parallel Crystal 2.6, replaced by getConnectedClient()

          Returns the ip address of the report server to use using the default load channel name and the default load balancing algorithm of load-factor.

 o getReportServerName
String getReportServerName(int algorithm)
Note: getReportServerName() is deprecated.As of Parallel Crystal 2.6, replaced by getConnectedClient(int)

          Returns the ip address of the report server to use using the default load channel name and the supplied load balancing algorithm (LoadBalancer constant).

 o getReportServerName
String getReportServerName(String chnlName)
Note: getReportServerName() is deprecated.As of Parallel Crystal 2.6, replaced by getConnectedClient(String)

          Returns the ip address of the report server to use using the supplied load channel name and the default load balancing algorithm of load-factor.

 o getReportServerName
String getReportServerName(String chnlName,
                           int algorithm)
Note: getReportServerName() is deprecated.As of Parallel Crystal 2.6, replaced by getConnectedClient(String, int)

          Returns the ip address of the report server to use using the supplied load channel name and the supplied load balancing algorithm (LoadBalancer constant).


Index