이 콘텐츠는 선택한 언어로 제공되지 않습니다.
21.2. Setting the limits
Any message larger than a certain size is considered a large message. Large messages will be split up and sent in fragments. This is determined by the parameter
min-large-message-size
.
The default value is 100KiB.
21.2.1. Using Core API 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
If the HornetQ Core API is used, the minimum large message size is specified by
ClientSessionFactory.setMinLargeMessageSize
.
ClientSessionFactory factory = HornetQClient.createClientSessionFactory(new TransportConfiguration(NettyConnectorFactory.class.getName()), null); factory.setMinLargeMessageSize(25 * 1024);
ClientSessionFactory factory =
HornetQClient.createClientSessionFactory(new
TransportConfiguration(NettyConnectorFactory.class.getName()), null);
factory.setMinLargeMessageSize(25 * 1024);
Section 14.3, “Configuring the transport directly from the client side” provides more information on how to instantiate the session factory.