Index
int LOAD_FACTOR
int ROUND_ROBIN
int MODIFIED_LOAD_FACTOR
String CRYSTAL7
String CRYSTAL9
String WORD
HarmoniApplicationClient getConnectedClient(String svrType)
Returns a reference to a connected HarmoniApplicationClient 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.
HarmoniApplicationClient getConnectedClient(int algorithm,
String svrType)
Returns a reference to a connected HarmoniApplicationClient object using the default load channel name "harmoni_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.
HarmoniApplicationClient getConnectedClient(String chnlName,
String svrType)
Returns a reference to a connected HarmoniApplicationClient 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.
HarmoniApplicationClient getConnectedClient(String chnlName,
int algorithm,
String svrType)
Returns a reference to a connected HarmoniApplicationClient 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.
HarmoniApplicationClient getConnectedClient(String chnlName,
int algorithm,
int priority,
String svrType)
Returns a reference to a connected HarmoniApplicationClient 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.
HarmoniApplicationClient getConnectedClient(String channel,
int algorithm,
int priority,
String svrType,
boolean fileArchive,
boolean idletimeout)
Returns a reference to a connected HarmoniApplicationClient 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.
String 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.
String getReportServerName(int algorithm)
Returns the ip address of the report server to use using the default load channel name and the supplied load balancing algorithm (LoadBalancer constant).
String getReportServerName(String chnlName)
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.
String getReportServerName(LoadBalanceInfo lb,
int priority)
Returns the ip address of the report server to use using the default load channel name and the supplied LoadBalanceInfo object.
String getReportServerName(String chnlName,
int algorithm)
Returns the ip address of the report server to use using the supplied load channel name and the supplied load balancing algorithm (LoadBalancer constant).
void setOrb(ORB neworb)
Index