クラス org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAll

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAllに対する継承グラフ

Inheritance graph
[凡例]
org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAllのコラボレーション図

Collaboration graph
[凡例]
すべてのメンバ一覧

説明

Error checking using all backends.

作者:
Emmanuel Cecchet
バージョン:
1.0

ErrorCheckingAll.java35 行で定義されています。

Public メソッド

 ErrorCheckingAll ()
ArrayList getBackends (ArrayList backends) throws ErrorCheckingException
String getInformation ()
int getNumberOfNodes ()
void setNumberOfNodes (int numberOfNodes)
int getPolicy ()
void setPolicy (int policy)
String getXml ()

Static Public 変数

final int RANDOM = 0
final int ROUND_ROBIN = 1
final int ALL = 2

Protected 変数

int nbOfNodes = 0
int policy


コンストラクタとデストラクタ

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAll.ErrorCheckingAll  ) 
 

Creates a new ErrorCheckingAll instance.

ErrorCheckingAll.java41 行で定義されています。

00042   {
00043     // We don't care about the number of nodes but the father's constructor
00044     // needs at least 3 nodes.
00045     super(ErrorCheckingPolicy.ALL, 3);
00046   }


メソッド

ArrayList org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAll.getBackends ArrayList  backends  )  throws ErrorCheckingException [virtual]
 

参照:
org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getBackends(ArrayList)

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicyに実装されています.

ErrorCheckingAll.java51 行で定義されています。

00053   {
00054     return backends;
00055   }

String org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingAll.getInformation  )  [virtual]
 

参照:
org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getInformation()

org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicyに実装されています.

ErrorCheckingAll.java60 行で定義されています。

00061   {
00062     return "Error checking using all backends";
00063   }

int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getNumberOfNodes  )  [inherited]
 

Returns the number of nodes.

戻り値:
an int value
参照:
setNumberOfNodes

ErrorCheckingPolicy.java71 行で定義されています。

00072   {
00073     return nbOfNodes;
00074   }

int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getPolicy  )  [inherited]
 

Returns the policy.

戻り値:
an int value
参照:
setPolicy

ErrorCheckingPolicy.java98 行で定義されています。

00099   {
00100     return policy;
00101   }

String org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.getXml  )  [inherited]
 

Convert this error checking policy to xml

戻り値:
xml formatted string

ErrorCheckingPolicy.java137 行で定義されています。

00139   {
00140     StringBuffer info = new StringBuffer();
00141     info.append(
00142       "<"
00143         + DatabasesXmlTags.ELT_ErrorChecking
00144         + " />"
00145         + DatabasesXmlTags.ATT_numberOfNodes
00146         + "=\""
00147         + this.getNumberOfNodes()
00148         + "\" "
00149         + DatabasesXmlTags.ATT_policy
00150         + "=\"");
00151     switch (policy)
00152     {
00153       case RANDOM :
00154         info.append(DatabasesXmlTags.VAL_random);
00155       case ROUND_ROBIN :
00156         info.append(DatabasesXmlTags.VAL_roundRobin);
00157       case ALL :
00158         info.append(DatabasesXmlTags.VAL_all);
00159       default :
00160         }
00161     info.append("\"/>");
00162     return info.toString();
00163   }

void org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.setNumberOfNodes int  numberOfNodes  )  [inherited]
 

Sets the number of nodes.

引数:
numberOfNodes the number of nodes to set
参照:
getNumberOfNodes

ErrorCheckingPolicy.java82 行で定義されています。

参照元 org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.ErrorCheckingPolicy().

00083   {
00084     if (numberOfNodes < 3)
00085       throw new IllegalArgumentException(
00086         "You must use at least 3 nodes for error checking ("
00087           + numberOfNodes
00088           + " is not acceptable)");
00089     this.nbOfNodes = numberOfNodes;
00090   }

void org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.setPolicy int  policy  )  [inherited]
 

Sets the policy.

引数:
policy the policy to set
参照:
getPolicy

ErrorCheckingPolicy.java109 行で定義されています。

参照元 org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.ErrorCheckingPolicy().

00110   {
00111     this.policy = policy;
00112   }


変数

final int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.ALL = 2 [static, inherited]
 

Request is sent to all backends.

ErrorCheckingPolicy.java46 行で定義されています。

int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.nbOfNodes = 0 [protected, inherited]
 

Number of nodes that are involved in error-checking per request.

ErrorCheckingPolicy.java49 行で定義されています。

int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.policy [protected, inherited]
 

ErrorCheckingPolicy.java51 行で定義されています。

final int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.RANDOM = 0 [static, inherited]
 

Pickup backends randomly.

ErrorCheckingPolicy.java40 行で定義されています。

final int org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking.ErrorCheckingPolicy.ROUND_ROBIN = 1 [static, inherited]
 

Backends are chosen using a round-robin algorithm.

ErrorCheckingPolicy.java43 行で定義されています。


このクラスの説明は次のファイルから生成されました:
CJDBCversion1.0rc6に対してWed May 5 18:02:24 2004に生成されました。 doxygen 1.3.6