Package org.apache.qpid.protonj2.engine
Interface EngineConfiguration
- All Known Implementing Classes:
ProtonEngineConfiguration
public interface EngineConfiguration
Configuration options for the Engine
-
Method Summary
Modifier and TypeMethodDescriptionReturns the currently assignedProtonBufferAllocator.default intReturns the maximum number of Transfer frames allowed for a single Delivery.booleanReturns true if the engine will emit frames to system output.setBufferAllocator(ProtonBufferAllocator allocator) Sets the ProtonBufferAllocator used by this Engine.default EngineConfigurationsetMaxTransfersPerDelivery(int maxTransfers) Sets the configured maximum number of Transfer frames that can make up a single completed delivery.setTraceFrames(boolean traceFrames) Enables AMQP frame tracing from engine to the system output.
-
Method Details
-
setBufferAllocator
Sets the ProtonBufferAllocator used by this Engine.When copying data, encoding types or otherwise needing to allocate memory storage the Engine will use the assigned
ProtonBufferAllocator. If no allocator is assigned the Engine will use the default allocator.- Parameters:
allocator- The Allocator instance to use from thisEngine.- Returns:
- this
EngineConfigurationfor chaining.
-
getBufferAllocator
ProtonBufferAllocator getBufferAllocator()Returns the currently assignedProtonBufferAllocator.- Returns:
- the currently assigned
ProtonBufferAllocator
-
setTraceFrames
Enables AMQP frame tracing from engine to the system output. Depending on the underlying engine composition frame tracing may not be possible in which case this method will have no effect and the access methodisTraceFrames()will return false.- Parameters:
traceFrames- true to enable engine frame tracing, false to disable it.- Returns:
- this
EngineConfigurationfor chaining.
-
isTraceFrames
boolean isTraceFrames()Returns true if the engine will emit frames to system output.- Returns:
- true if the engine will emit frames to system output
-
setMaxTransfersPerDelivery
Sets the configured maximum number of Transfer frames that can make up a single completed delivery. If the delivery is not completed within this number of transfer frames the engine may either close the associated link or the connection in its entirety. An engine implementation may opt not to implement this feature in which case the value should be fixed at zero and any assignment should be ignored. If the value is configured as zero then the behavior should be to treat that as no limit was assigned.- Parameters:
maxTransfers- The maximum number of Transfers allowed for a single inbound delivery.- Returns:
- this
EngineConfigurationfor chaining.
-
getMaxTransfersPerDelivery
default int getMaxTransfersPerDelivery()Returns the maximum number of Transfer frames allowed for a single Delivery.- Returns:
- the maximum number of Transfer frames allowed for a single Delivery
-