Changed default value of 'splittable' attribute of PollableBean annotation to 'true'

This commit is contained in:
Oleg Zhurakousky
2019-11-22 10:32:15 +01:00
parent a13f4bcd65
commit 744e32aed4

View File

@@ -59,5 +59,5 @@ public @interface PollableBean {
* @return true if the resulting stream produced by the
* annotated {@link Supplier} has to be split.
*/
boolean splittable() default false;
boolean splittable() default true;
}