• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/

Lines Matching defs:Environment

6  * $Id: Environment.java,v 12.26 2008/04/02 13:43:38 bschmeck Exp $
23 Environment env = new Environment(home, new EnvironmentConfig());
29 Environment env = new Environment(home, null);
32 Note that many Environment objects may access a single environment.
43 Environment newlyCreatedEnv = new Environment(home, envConfig);
46 Environment handles are free-threaded unless {@link com.sleepycat.db.EnvironmentConfig#setThreaded EnvironmentConfig.setThreaded} is called to disable this before the environment is opened.
48 An <em>environment handle</em> is an Environment instance. More than
49 one Environment instance may be created for the same physical directory,
50 which is the same as saying that more than one Environment handle may
53 The Environment handle should not be closed while any other handle
55 {@link com.sleepycat.db.Database Database} or {@link com.sleepycat.db.Transaction Transaction}. Once {@link com.sleepycat.db.Environment#close Environment.close}
59 public class Environment {
64 Environment(final DbEnv dbenv)
90 public Environment(final java.io.File home, EnvironmentConfig config)
103 The {@link com.sleepycat.db.Environment Environment} handle should not be closed while any other
133 {@link com.sleepycat.db.Environment Environment} handle may not be accessed again.
191 {@link com.sleepycat.db.Environment Environment} handle may not be
614 Call {@link com.sleepycat.db.Environment#freeLockerID Environment.freeLockerID} to return the locker ID to
815 be processed using the same {@link com.sleepycat.db.Environment Environment} handle. It is not
859 performed using a specified {@link com.sleepycat.db.Environment Environment} handle.
1128 except for {@link com.sleepycat.db.Environment#beginTransaction Environment.beginTransaction},
1364 performed using a specified {@link com.sleepycat.db.Environment Environment} handle.