DbEnv::rep_set_limit

API Ref

#include <db_cxx.h>

int DbEnv::rep_set_limit(u_int32_t gbytes, u_int32_t bytes);

int DbEnv::rep_get_limit(u_int32_t *gbytesp, u_int32_t *bytesp);


Description: DbEnv::rep_set_limit

The DbEnv::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 DbEnv::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.

Record transmission throttling is turned on by default with a limit of 10MB.

If the values passed to the DbEnv::rep_set_limit method are both zero, then the transmission limit is turned off.

The DbEnv::rep_set_limit method configures a database environment, not only operations performed using the specified DbEnv handle.

The DbEnv::rep_set_limit method may be called at any time during the life of the application.

The DbEnv::rep_set_limit method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success.

Parameters

bytes
The gbytes and bytes parameters specify the maximum number of bytes that will be sent in a single call to DbEnv::rep_process_message method.
gbytes
The gbytes and bytes parameters specify the maximum number of bytes that will be sent in a single call to DbEnv::rep_process_message method.

Description: rep_get_limit

The DbEnv::rep_get_limit method may be called at any time during the life of the application.

The DbEnv::rep_get_limit method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success.

Parameters

bytesp
The bytesp parameter references memory into which the additional bytes of memory in the current transmit limit is copied.
gbytesp
The gbytesp parameter references memory into which the gigabytes of memory in the in the current transmit limit is copied.

Class

DbEnv

See Also

Replication and Related Methods

APIRef

Copyright (c) 1996,2007 Oracle. All rights reserved.