@Experimental public enum ByteBufferPoolStrategy extends Enum<ByteBufferPoolStrategy>
ByteBufferProvider will use.| Enum Constant and Description |
|---|
CHUNKED_BUFFERS_POOL
Default thread pool based byte buffer provider.
|
FIXED_BUFFERS_POOL
Pool strategy based on the DataWeave one.
|
| Modifier and Type | Method and Description |
|---|---|
static ByteBufferPoolStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteBufferPoolStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteBufferPoolStrategy CHUNKED_BUFFERS_POOL
public static final ByteBufferPoolStrategy FIXED_BUFFERS_POOL
public static ByteBufferPoolStrategy[] values()
for (ByteBufferPoolStrategy c : ByteBufferPoolStrategy.values()) System.out.println(c);
public static ByteBufferPoolStrategy 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 MuleSoft, Inc.. All rights reserved.