HBASE-8947 Thrift 2 : Replace "bool writeToWAL" with "TDurability durability" (Hamed Madani)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1507101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lars George 2013-07-25 19:29:24 +00:00
parent afd3480511
commit d81ace449d
1 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,58 @@
/**
* Autogenerated by Thrift Compiler (0.9.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift2.generated;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
/**
* Specify Durability:
* - SKIP_WAL means do not write the Mutation to the WAL.
* - ASYNC_WAL means write the Mutation to the WAL asynchronously,
* - SYNC_WAL means write the Mutation to the WAL synchronously,
* - FSYNC_WAL means Write the Mutation to the WAL synchronously and force the entries to disk.
*/
public enum TDurability implements org.apache.thrift.TEnum {
SKIP_WAL(1),
ASYNC_WAL(2),
SYNC_WAL(3),
FSYNC_WAL(4);
private final int value;
private TDurability(int value) {
this.value = value;
}
/**
* Get the integer value of this enum value, as defined in the Thrift IDL.
*/
public int getValue() {
return value;
}
/**
* Find a the enum type by its integer value, as defined in the Thrift IDL.
* @return null if the value is not found.
*/
public static TDurability findByValue(int value) {
switch (value) {
case 1:
return SKIP_WAL;
case 2:
return ASYNC_WAL;
case 3:
return SYNC_WAL;
case 4:
return FSYNC_WAL;
default:
return null;
}
}
}