public enum HandshakeProperty extends Enum<HandshakeProperty>
| Enum Constant and Description |
|---|
BATCH_COUNT
The preferred number of FlowFiles that the server should send to the
client when pulling data.
|
BATCH_DURATION
The preferred amount of time that the server should send data to the
client when pulling data.
|
BATCH_SIZE
The preferred number of bytes that the server should send to the client
when pulling data.
|
GZIP
Boolean value indicating whether or not the contents of a FlowFile should
be GZipped when transferred.
|
PORT_IDENTIFIER
The unique identifier of the port to communicate with
|
REQUEST_EXPIRATION_MILLIS
Indicates the number of milliseconds after the request was made that the
client will wait for a response.
|
| Modifier and Type | Method and Description |
|---|---|
static HandshakeProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandshakeProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandshakeProperty GZIP
public static final HandshakeProperty PORT_IDENTIFIER
public static final HandshakeProperty REQUEST_EXPIRATION_MILLIS
public static final HandshakeProperty BATCH_COUNT
public static final HandshakeProperty BATCH_SIZE
public static final HandshakeProperty BATCH_DURATION
public static HandshakeProperty[] values()
for (HandshakeProperty c : HandshakeProperty.values()) System.out.println(c);
public static HandshakeProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 Apache NiFi Project. All rights reserved.