当前位置: 首页>>代码示例>>Java>>正文


Java Environment.CHECKPOINTER_NAME属性代码示例

本文整理汇总了Java中com.sleepycat.je.Environment.CHECKPOINTER_NAME属性的典型用法代码示例。如果您正苦于以下问题:Java Environment.CHECKPOINTER_NAME属性的具体用法?Java Environment.CHECKPOINTER_NAME怎么用?Java Environment.CHECKPOINTER_NAME使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sleepycat.je.Environment的用法示例。


在下文中一共展示了Environment.CHECKPOINTER_NAME属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createDaemons

/**
    * Read configurations for daemons, instantiate.
    */
   private void createDaemons()
       throws DatabaseException  {

       /* Evictor */
       evictor = new Evictor(this, "Evictor");

       /* Checkpointer */

       /*
        * Make sure that either log-size-based or time-based checkpointing
        * is enabled.
        */
       long checkpointerWakeupTime =
           Checkpointer.getWakeupPeriod(configManager);
       checkpointer = new Checkpointer(this,
                                       checkpointerWakeupTime,
                                       Environment.CHECKPOINTER_NAME);

       /* INCompressor */
       long compressorWakeupInterval =
           PropUtil.microsToMillis
    (configManager.getLong
     (EnvironmentParams.COMPRESSOR_WAKEUP_INTERVAL));
       inCompressor = new INCompressor(this, compressorWakeupInterval,
                                       Environment.INCOMP_NAME);

/* The cleaner is not time-based so no wakeup interval is used. */
cleaner = new Cleaner(this, Environment.CLEANER_NAME);
   }
 
开发者ID:nologic,项目名称:nabs,代码行数:32,代码来源:EnvironmentImpl.java

示例2: createDaemons

/**
    * Read configurations for daemons, instantiate.
    */
   private void createDaemons() 
       throws DatabaseException  {

       /* Evictor */
       evictor = new Evictor(this, "Evictor");

       /* Checkpointer */

       /*
        * Make sure that either log-size-based or time-based checkpointing
        * is enabled.
        */
       long checkpointerWakeupTime =
           Checkpointer.getWakeupPeriod(configManager);
       checkpointer = new Checkpointer(this, 
                                       checkpointerWakeupTime,
                                       Environment.CHECKPOINTER_NAME);

       /* INCompressor */
       long compressorWakeupInterval =
           PropUtil.microsToMillis
    (configManager.getLong
     (EnvironmentParams.COMPRESSOR_WAKEUP_INTERVAL));
       inCompressor = new INCompressor(this, compressorWakeupInterval,
                                       Environment.INCOMP_NAME);

/* The cleaner is not time-based so no wakeup interval is used. */
cleaner = new Cleaner(this, Environment.CLEANER_NAME);
   }
 
开发者ID:nologic,项目名称:nabs,代码行数:32,代码来源:EnvironmentImpl.java

示例3: createDaemons

/**
 * Read configurations for daemons, instantiate.
 */
private void createDaemons(EnvironmentImpl sharedCacheEnv)
    throws DatabaseException {

    /* Evictor */
    if (sharedCacheEnv != null) {
        assert sharedCache;
        evictor = sharedCacheEnv.evictor;
    } else if (sharedCache) {
        evictor = new SharedEvictor(this);
    } else {
        evictor = new PrivateEvictor(this);
    }

    /* Checkpointer */

    /*
     * Make sure that either log-size-based or time-based checkpointing
     * is enabled.
     */
    long checkpointerWakeupTime =
        Checkpointer.getWakeupPeriod(configManager);
    checkpointer = new Checkpointer(this,
                                    checkpointerWakeupTime,
                                    Environment.CHECKPOINTER_NAME);

    /* INCompressor */
    long compressorWakeupInterval = configManager.getDuration
        (EnvironmentParams.COMPRESSOR_WAKEUP_INTERVAL);
    inCompressor = new INCompressor(this, compressorWakeupInterval,
                                    Environment.INCOMP_NAME);

    /* The cleaner is not time-based so no wakeup interval is used. */
    cleaner = new Cleaner(this, Environment.CLEANER_NAME);

    createStatCapture();
}
 
开发者ID:prat0318,项目名称:dbms,代码行数:39,代码来源:EnvironmentImpl.java


注:本文中的com.sleepycat.je.Environment.CHECKPOINTER_NAME属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。