public static enum PublisherOptions.BlockingMode extends java.lang.Enum<PublisherOptions.BlockingMode>
| Enum Constant and Description |
|---|
AUTOBLOCKING
Blocking is done internally by the Publisher.
|
EXPLICIT
Publisher makes no decisions on how to block up data rows.
|
NONE
Records are published singly.
|
| Modifier and Type | Method and Description |
|---|---|
static PublisherOptions.BlockingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PublisherOptions.BlockingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublisherOptions.BlockingMode NONE
MessageWriter.startTransaction(int) and MessageWriter.startEnvelope(int)
calls are ignored.public static final PublisherOptions.BlockingMode EXPLICIT
public static final PublisherOptions.BlockingMode AUTOBLOCKING
public static PublisherOptions.BlockingMode[] values()
for (PublisherOptions.BlockingMode c : PublisherOptions.BlockingMode.values()) System.out.println(c);
public static PublisherOptions.BlockingMode 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