DB_ENV->rep_set_priority |
#include <db.h>int DB_ENV->rep_set_priority(DB_ENV *env, int priority); int DB_ENV->rep_get_priority(DB_ENV *env, int *priorityp);
The DB_ENV->rep_set_priority method specifies the database environment's priority in replication group elections. The priority must be a positive integer, or 0 if this environment cannot be a replication group master.
The DB_ENV->rep_set_priority method configures a database environment, not only operations performed using the specified DB_ENV handle.
The DB_ENV->rep_set_priority method may be called at any time during the life of the application.
The DB_ENV->rep_set_priority method returns a non-zero error value on failure and 0 on success.
The DB_ENV->rep_get_priority method returns the database environment priority.
The DB_ENV->rep_get_priority method may be called at any time during the life of the application.
The DB_ENV->rep_get_priority method returns a non-zero error value on failure and 0 on success.
Copyright (c) 1996-2006 Oracle Corporation - All rights reserved.