Class AmqpWireFormatFactory
- java.lang.Object
-
- org.apache.activemq.transport.amqp.AmqpWireFormatFactory
-
- All Implemented Interfaces:
WireFormatFactory
public class AmqpWireFormatFactory extends Object implements WireFormatFactory
Creates the default AMQP WireFormat object used to configure the protocol support.
-
-
Constructor Summary
Constructors Constructor Description AmqpWireFormatFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WireFormatcreateWireFormat()intgetIdelTimeout()intgetMaxAmqpFrameSize()longgetMaxFrameSize()intgetProducerCredit()StringgetTransformer()booleanisAllowNonSaslConnections()voidsetAllowNonSaslConnections(boolean allowNonSaslConnections)voidsetIdelTimeout(int idelTimeout)voidsetMaxAmqpFrameSize(int maxAmqpFrameSize)voidsetMaxFrameSize(long maxFrameSize)voidsetProducerCredit(int producerCredit)voidsetTransformer(String transformer)
-
-
-
Method Detail
-
createWireFormat
public WireFormat createWireFormat()
- Specified by:
createWireFormatin interfaceWireFormatFactory
-
getMaxAmqpFrameSize
public int getMaxAmqpFrameSize()
-
setMaxAmqpFrameSize
public void setMaxAmqpFrameSize(int maxAmqpFrameSize)
-
getMaxFrameSize
public long getMaxFrameSize()
-
setMaxFrameSize
public void setMaxFrameSize(long maxFrameSize)
-
getIdelTimeout
public int getIdelTimeout()
-
setIdelTimeout
public void setIdelTimeout(int idelTimeout)
-
getProducerCredit
public int getProducerCredit()
-
setProducerCredit
public void setProducerCredit(int producerCredit)
-
getTransformer
public String getTransformer()
-
setTransformer
public void setTransformer(String transformer)
-
isAllowNonSaslConnections
public boolean isAllowNonSaslConnections()
-
setAllowNonSaslConnections
public void setAllowNonSaslConnections(boolean allowNonSaslConnections)
-
-