Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > 909f302ad53a08b3685753343102c969 > files > 97

lib64db4.1-devel-4.1.25-13mdv2008.1.x86_64.rpm

<!--$Id: env_set_feedback.so,v 10.25 2002/08/18 21:16:28 bostic Exp $-->
<!--Copyright 1997-2002 by Sleepycat Software, Inc.-->
<!--All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: DB_ENV-&gt;set_feedback</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
</head>
<body bgcolor=white>
<a name="2"><!--meow--></a>
<table width="100%"><tr valign=top>
<td>
<h1>DB_ENV-&gt;set_feedback</h1>
</td>
<td align=right>
<a href="../../db4-devel-4.1.25/api_c/c_index.html"><img src="../../db4-4.1.25/images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../../db4-4.1.25/images/ref.gif" alt="Ref"></a>
</td></tr></table>
<hr size=1 noshade>
<tt>
<h3><pre>
#include &lt;db.h&gt;
<p>
int
DB_ENV-&gt;set_feedback(DB_ENV *,
    void (*db_feedback_fcn)(DB_ENV *, int opcode, int pct));
</pre></h3>
<h1>Description</h1>
<p>Some operations performed by the Berkeley DB library can take non-trivial
amounts of time.  The DB_ENV-&gt;set_feedback method can be used by
applications to monitor progress within these operations.
<p>When an operation is likely to take a long time, Berkeley DB will call the
specified callback function.  This function must be declared with
three arguments: the first will be a reference to the enclosing
environment, the second a flag value, and the third the percent of the
operation that has been completed, specified as an integer value between
0 and 100.  It is up to the callback function to display this
information in an appropriate manner.
<p>The <b>opcode</b> argument may take on any of the following values:
<p><dl compact>
<p><dt><a name="DB_RECOVER">DB_RECOVER</a><dd>The environment is being recovered.
</dl>
<p>The DB_ENV-&gt;set_feedback interface may be called at any time during the life of
the application.
<p>The DB_ENV-&gt;set_feedback method returns a non-zero error value on failure and 0 on success.
<h1>Class</h1>
<a href="../../db4-devel-4.1.25/api_c/env_class.html">DB_ENV</a>
<h1>See Also</h1>
<a href="../../db4-devel-4.1.25/api_c/env_list.html">Database Environments and Related Methods</a>
</tt>
<table width="100%"><tr><td><br></td><td align=right>
<a href="../../db4-devel-4.1.25/api_c/c_index.html"><img src="../../db4-4.1.25/images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../../db4-4.1.25/images/ref.gif" alt="Ref"></a>
</td></tr></table>
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
</body>
</html>