public static enum TFileTransport.tailPolicy extends java.lang.Enum<TFileTransport.tailPolicy>
Enum Constant and Description |
---|
NOWAIT |
WAIT_FOREVER |
Modifier and Type | Field and Description |
---|---|
int |
retries_
Number of retries before giving up
if 0, no retries
if -1, retry forever
|
int |
timeout_
Time in milliseconds to sleep before next read
If 0, no sleep
|
Modifier and Type | Method and Description |
---|---|
static TFileTransport.tailPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TFileTransport.tailPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TFileTransport.tailPolicy NOWAIT
public static final TFileTransport.tailPolicy WAIT_FOREVER
public final int timeout_
public final int retries_
public static TFileTransport.tailPolicy[] values()
for (TFileTransport.tailPolicy c : TFileTransport.tailPolicy.values()) System.out.println(c);
public static TFileTransport.tailPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null