Dennis Holunder
2018-09-11 09:30:29 UTC
Hi,
according to the seda documetation
https://github.com/apache/camel/blob/master/camel-core/src/main/docs/seda-component.adoc
the default size value is 2147483647. However I observe that it will
actually default to 1000, which is the default value of queueSize
option. Source code of SedaEndpoint:
Integer size = getSize() == Integer.MAX_VALUE ? null : getSize();
Why there are two size options with different default values?
Dan
according to the seda documetation
https://github.com/apache/camel/blob/master/camel-core/src/main/docs/seda-component.adoc
the default size value is 2147483647. However I observe that it will
actually default to 1000, which is the default value of queueSize
option. Source code of SedaEndpoint:
Integer size = getSize() == Integer.MAX_VALUE ? null : getSize();
Why there are two size options with different default values?
Dan