Index
Object PCRE.LoadBalancer
LOAD_FACTOR-
ROUND_ROBIN-
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.
getConnectedClient(int)
- Returns a reference to a connected PCREApplicationClient object
using the default load channel name "pcre_loadbalancer_p"
and the supplied algorithm constant.
getConnectedClient(String)
- Returns a reference to a connected PCREApplicationClient object
using the supplied channel name
and the default load balancing algorithm of load-factor.
getConnectedClient(String, int)
- Returns a reference to a connected PCREApplicationClient object
using the supplied channel name
and the supplied algorithm constant.
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
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
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
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
LOAD_FACTOR
int LOAD_FACTOR
ROUND_ROBIN
int ROUND_ROBIN
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.
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.
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.
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.
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.
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).
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.
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