• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/docs/api_reference/CXX/
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4  <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6    <title>DbEnv::rep_set_priority()</title>
7    <link rel="stylesheet" href="apiReference.css" type="text/css" />
8    <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
9    <link rel="start" href="index.html" title="Berkeley DB C++ API Reference" />
10    <link rel="up" href="rep.html" title="Chapter 11.  Replication Methods" />
11    <link rel="prev" href="repnsites.html" title="DbEnv::rep_set_nsites()" />
12    <link rel="next" href="repset_request.html" title="DbEnv::rep_set_request()" />
13  </head>
14  <body>
15    <div class="navheader">
16      <table width="100%" summary="Navigation header">
17        <tr>
18          <th colspan="3" align="center">DbEnv::rep_set_priority()</th>
19        </tr>
20        <tr>
21          <td width="20%" align="left"><a accesskey="p" href="repnsites.html">Prev</a> </td>
22          <th width="60%" align="center">Chapter 11. 
23                Replication Methods
24        </th>
25          <td width="20%" align="right"> <a accesskey="n" href="repset_request.html">Next</a></td>
26        </tr>
27      </table>
28      <hr />
29    </div>
30    <div class="sect1" lang="en" xml:lang="en">
31      <div class="titlepage">
32        <div>
33          <div>
34            <h2 class="title" style="clear: both"><a id="reppriority"></a>DbEnv::rep_set_priority()</h2>
35          </div>
36        </div>
37      </div>
38      <pre class="programlisting">#include &lt;db_cxx.h&gt;
39 
40int
41DbEnv::rep_set_priority(u_int32_t priority); </pre>
42      <p>
43         The <code class="methodname">DbEnv::rep_set_priority()</code> method specifies the database
44         environment's priority in replication group elections.  A special
45         value of 0 indicates that this environment cannot be a replication
46         group master.
47    </p>
48      <p>
49         The database environment's replication subsystem may also be configured using the
50         environment's 
51         <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file.  
52         The syntax of the entry in that file is a single line with the string "rep_set_priority",
53         one or more whitespace characters, and the priority of this site. For example,
54         "rep_set_priority 1" sets the priority of this site to 1. Because the 
55         <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file is read
56         when the database environment is opened, it will silently overrule configuration done
57         before that time.
58    </p>
59      <p>
60        Note that if the application never explicitly sets a priority, then a default value of 100
61        is used.
62    </p>
63      <p>
64         The <code class="methodname">DbEnv::rep_set_priority()</code> method configures a database
65         environment, not only operations performed using the specified 
66         <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a>  handle.
67    </p>
68      <p>
69         The <code class="methodname">DbEnv::rep_set_priority()</code> method may be called at any time
70         during the life of the application.
71    </p>
72      <p>
73         The <code class="methodname">DbEnv::rep_set_priority()</code> <span>
74            
75            <span>
76                method either returns a non-zero error value or throws an
77                exception that encapsulates a non-zero error value on
78                failure, and returns 0 on success.
79            </span>
80        </span>
81    </p>
82      <div class="sect2" lang="en" xml:lang="en">
83        <div class="titlepage">
84          <div>
85            <div>
86              <h3 class="title"><a id="id1703838"></a>Parameters</h3>
87            </div>
88          </div>
89        </div>
90        <div class="sect3" lang="en" xml:lang="en">
91          <div class="titlepage">
92            <div>
93              <div>
94                <h4 class="title"><a id="id1703777"></a>priority</h4>
95              </div>
96            </div>
97          </div>
98          <p>
99                          The priority of this database environment in the replication group.  The
100                          priority must be a non-zero integer, or 0 if this environment cannot be a
101                          replication group master.  (See 
102                          <a href="../../programmer_reference/rep_pri.html" class="olink">Replication environment priorities</a> 
103                          for more information).
104                     </p>
105        </div>
106      </div>
107      <div class="sect2" lang="en" xml:lang="en">
108        <div class="titlepage">
109          <div>
110            <div>
111              <h3 class="title"><a id="id1703884"></a>Class</h3>
112            </div>
113          </div>
114        </div>
115        <p>
116                <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a>  
117            </p>
118      </div>
119      <div class="sect2" lang="en" xml:lang="en">
120        <div class="titlepage">
121          <div>
122            <div>
123              <h3 class="title"><a id="id1704038"></a>See Also</h3>
124            </div>
125          </div>
126        </div>
127        <p>
128                     <a class="xref" href="rep.html#replist" title="Replication and Related Methods">Replication and Related Methods</a> 
129                </p>
130      </div>
131    </div>
132    <div class="navfooter">
133      <hr />
134      <table width="100%" summary="Navigation footer">
135        <tr>
136          <td width="40%" align="left"><a accesskey="p" href="repnsites.html">Prev</a> </td>
137          <td width="20%" align="center">
138            <a accesskey="u" href="rep.html">Up</a>
139          </td>
140          <td width="40%" align="right"> <a accesskey="n" href="repset_request.html">Next</a></td>
141        </tr>
142        <tr>
143          <td width="40%" align="left" valign="top">DbEnv::rep_set_nsites() </td>
144          <td width="20%" align="center">
145            <a accesskey="h" href="index.html">Home</a>
146          </td>
147          <td width="40%" align="right" valign="top"> DbEnv::rep_set_request()</td>
148        </tr>
149      </table>
150    </div>
151  </body>
152</html>
153