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