Index

Object PCRE.LoadBalancer


Variable Index

 o LOAD_FACTOR
 
 o MODIFIED_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" the default load balancing algorithm of load-factor, the default medium priority,the default archiving option of false and the default idletimeout option of false.
 o getConnectedClient(int)
Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" the supplied algorithm constant, the default medium priority,the default archiving option of false and the default idletimeout option of false.
 o getConnectedClient(String)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name, default medium priority the default load balancing algorithm of load-factor the default archiving option of false and the default idletimeout option of false.
 o getConnectedClient(String, int)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the supplied algorithm constant.
 o getConnectedClient(String, int, int)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name, algorithm constant and priority.
 o getConnectedClient(String, int, int, boolean, boolean)
Returns a reference to a connected PCREApplicationClient object using the supplied channel name, the supplied algorithm constant the supplied priority constant, ture if filereturn is to be archived false otherwise and true if idletimeout is to be disabled false otherwise.
 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
 o MODIFIED_LOAD_FACTOR
int MODIFIED_LOAD_FACTOR

Method Detail

 o getConnectedClient
PCREApplicationClient getConnectedClient()
          Returns a reference to a connected PCREApplicationClient object using the default load channel name "pcre_loadbalancer_p" the default load balancing algorithm of load-factor, the default medium priority,the default archiving option of false and the default idletimeout option of false. 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" the supplied algorithm constant, the default medium priority,the default archiving option of false and the default idletimeout option of false. 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, default medium priority the default load balancing algorithm of load-factor the default archiving option of false and the default idletimeout option of false. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(String chnlName,
                                         int algorithm)
          Returns a reference to a connected PCREApplicationClient object using the supplied channel name and the supplied algorithm constant. Default priority is set to medium, the default archiving option is set to false and the default idletimeout option is set to false. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(String chnlName,
                                         int algorithm,
                                         int priority)
          Returns a reference to a connected PCREApplicationClient object using the supplied channel name, algorithm constant and priority. the default archiving option of false and the default idletimeout option of false. It is not necessary to call the connect method on the client object.
 o getConnectedClient
PCREApplicationClient getConnectedClient(String channel,
                                         int algorithm,
                                         int priority,
                                         boolean archive,
                                         boolean idletimeout)
          Returns a reference to a connected PCREApplicationClient object using the supplied channel name, the supplied algorithm constant the supplied priority constant, ture if filereturn is to be archived false otherwise and true if idletimeout is to be disabled false otherwise. 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