public enum TSWriteMode extends Enum<TSWriteMode>
| 枚举常量和说明 |
|---|
PARALLEL
Parallel write
Concurrency between different buckets, and parallel requests within the same bucket as well
|
SEQUENTIAL
Serial write:
Concurrency between different buckets, serial requests within the same bucket.
|
public static final TSWriteMode SEQUENTIAL
public static final TSWriteMode PARALLEL
public static TSWriteMode[] values()
for (TSWriteMode c : TSWriteMode.values()) System.out.println(c);
public static TSWriteMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All Rights Reserved.