KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > options > cachemodelocal > SyncReplPessLocksTest


1 /*
2  * JBoss, Home of Professional Open Source
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.cache.options.cachemodelocal;
8
9 import org.jboss.cache.config.Configuration;
10
11 public class SyncReplPessLocksTest extends CacheModeLocalTestBase
12 {
13     public SyncReplPessLocksTest()
14     {
15         cacheMode = Configuration.CacheMode.REPL_SYNC;
16         nodeLockingScheme = "PESSIMISTIC";
17     }
18
19     protected void delay()
20     {
21     }
22 }
23
Popular Tags