DB_ENV->rep_set_limit |
#include <db.h>int DB_ENV->rep_set_limit(DB_ENV *env, u_int32_t gbytes, u_int32_t bytes);
int DB_ENV->rep_get_limit(DB_ENV *dbenv, u_int32_t *gbytesp, u_int32_t *bytesp);
The DB_ENV->rep_set_limit method sets a byte-count limit on the amount of data that will be transmitted from a site in response to a single message processed by the DB_ENV->rep_process_message method. The limit is not a hard limit, and the record that exceeds the limit is the last record to be sent.
The DB_ENV->rep_set_limit method configures a database environment, not only operations performed using the specified DB_ENV handle.
The DB_ENV->rep_set_limit method may be called at any time during the life of the application.
The DB_ENV->rep_set_limit method returns a non-zero error value on failure and 0 on success.
The DB_ENV->rep_get_limit method may be called at any time during the life of the application.
The DB_ENV->rep_get_limit method returns a non-zero error value on failure and 0 on success.
Copyright (c) 1996-2006 Oracle Corporation - All rights reserved.