From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- docs/java/com/sleepycat/db/LockDetectMode.html | 825 ++++++++++++------------- 1 file changed, 396 insertions(+), 429 deletions(-) (limited to 'docs/java/com/sleepycat/db/LockDetectMode.html') diff --git a/docs/java/com/sleepycat/db/LockDetectMode.html b/docs/java/com/sleepycat/db/LockDetectMode.html index c93f2173..2cc4eaa4 100644 --- a/docs/java/com/sleepycat/db/LockDetectMode.html +++ b/docs/java/com/sleepycat/db/LockDetectMode.html @@ -1,450 +1,417 @@ - - - - - -LockDetectMode (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.db -
-Class LockDetectMode

-
-java.lang.Object
-  extended by com.sleepycat.db.LockDetectMode
-
-
-
-
public final class LockDetectMode
extends Object
- - -

-Deadlock detection modes. -

- -

-


- -

+

+
com.sleepycat.db
+

Class LockDetectMode

+
+
+ +
+
    +
  • +
    +
    +
    public final class LockDetectMode
    +extends java.lang.Object
    +
    Deadlock detection modes.
    +
  • +
+
+
+
    +
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -Field Summary
    -static LockDetectModeDEFAULT - -
    -          Use whatever lock policy was specified when the database environment - was created.
    -static LockDetectModeEXPIRE - -
    -          Reject lock requests which have timed out.
    -static LockDetectModeMAXLOCKS - -
    -          Reject the lock request for the locker ID with the most locks.
    -static LockDetectModeMAXWRITE - -
    -          Reject the lock request for the locker ID with the most write locks.
    -static LockDetectModeMINLOCKS - -
    -          Reject the lock request for the locker ID with the fewest locks.
    -static LockDetectModeMINWRITE - -
    -          Reject the lock request for the locker ID with the fewest write locks.
    -static LockDetectModeNONE - -
    -          Turn off deadlock detection.
    -static LockDetectModeOLDEST - -
    -          Reject the lock request for the locker ID with the oldest lock.
    -static LockDetectModeRANDOM - -
    -          Reject the lock request for a random locker ID.
    -static LockDetectModeYOUNGEST - -
    -          Reject the lock request for the locker ID with the youngest lock.
    -  +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static LockDetectModeDEFAULT +
      Use whatever lock policy was specified when the database environment + was created.
      +
      static LockDetectModeEXPIRE +
      Reject lock requests which have timed out.
      +
      static LockDetectModeMAXLOCKS +
      Reject the lock request for the locker ID with the most locks.
      +
      static LockDetectModeMAXWRITE +
      Reject the lock request for the locker ID with the most write locks.
      +
      static LockDetectModeMINLOCKS +
      Reject the lock request for the locker ID with the fewest locks.
      +
      static LockDetectModeMINWRITE +
      Reject the lock request for the locker ID with the fewest write locks.
      +
      static LockDetectModeNONE +
      Turn off deadlock detection.
      +
      static LockDetectModeOLDEST +
      Reject the lock request for the locker ID with the oldest lock.
      +
      static LockDetectModeRANDOM +
      Reject the lock request for a random locker ID.
      +
      static LockDetectModeYOUNGEST +
      Reject the lock request for the locker ID with the youngest lock.
      +
      +
    • +
    - - - - - - - - - - -
    -Method Summary
    - StringtoString() - -
    -          
    - - - - - - - -
    Methods inherited from class java.lang.Object
    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    -  -

    - +

      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString()
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • - - - - - - -
    -Field Detail
    - -

    -NONE

    -
    -public static final LockDetectMode NONE
    -
    -
    Turn off deadlock detection. -

    -

    -
    -
    -
    - -

    -DEFAULT

    -
    -public static final LockDetectMode DEFAULT
    -
    -
    Use whatever lock policy was specified when the database environment +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        NONE

        +
        public static final LockDetectMode NONE
        +
        Turn off deadlock detection.
        +
      • +
      + + + +
        +
      • +

        DEFAULT

        +
        public static final LockDetectMode DEFAULT
        +
        Use whatever lock policy was specified when the database environment was created. If no lock policy has yet been specified, set the lock - policy to DB_LOCK_RANDOM. -

        -

        -
        -
    -
    - -

    -EXPIRE

    -
    -public static final LockDetectMode EXPIRE
    -
    -
    Reject lock requests which have timed out. No other deadlock detection - is performed. -

    -

    -
    -
    -
    - -

    -MAXLOCKS

    -
    -public static final LockDetectMode MAXLOCKS
    -
    -
    Reject the lock request for the locker ID with the most locks. -

    -

    -
    -
    -
    - -

    -MAXWRITE

    -
    -public static final LockDetectMode MAXWRITE
    -
    -
    Reject the lock request for the locker ID with the most write locks. -

    -

    -
    -
    -
    - -

    -MINLOCKS

    -
    -public static final LockDetectMode MINLOCKS
    -
    -
    Reject the lock request for the locker ID with the fewest locks. -

    -

    -
    -
    -
    - -

    -MINWRITE

    -
    -public static final LockDetectMode MINWRITE
    -
    -
    Reject the lock request for the locker ID with the fewest write locks. -

    -

    -
    -
    -
    - -

    -OLDEST

    -
    -public static final LockDetectMode OLDEST
    -
    -
    Reject the lock request for the locker ID with the oldest lock. -

    -

    -
    -
    -
    - -

    -RANDOM

    -
    -public static final LockDetectMode RANDOM
    -
    -
    Reject the lock request for a random locker ID. -

    -

    -
    -
    -
    - -

    -YOUNGEST

    -
    -public static final LockDetectMode YOUNGEST
    -
    -
    Reject the lock request for the locker ID with the youngest lock. -

    -

    -
    -
    - + policy to DB_LOCK_RANDOM.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - -
-Method Detail
- -

-toString

-
-public String toString()
-
-
-

-

-
Overrides:
toString in class Object
-
-
-
-
-
+ + + +
+ -
- - - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. - - +

Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.

+ + -- cgit v1.2.1