hitesh sharma
hitesh sharma
When I see the regex, it seems there are rules for termination characters and there are some lookbacks as well. I was just interested in reading these rules somewhere rather...
This doesn't have to be a cache but could be a client supplied unique identifier, for each task, which Parseq can use before executing the plan and can de-dupe tasks....
@mchen07 later I realized a cache would anyways be required. Pardon my limited knowledge of Parseq. I'm really looking forward to this change. If this is being picked up I...
you can do this ``` Task t1 = Task.value(orderData) .map(d -> { if (d.getCurrency().equals("dollars")){ throw new OrderDatagramValidationException.Item.ExistsException(1,"abc",1); } return d; }); ``` Though note that this is not a good...
Yeah I agree there are multiple versions. We should stick to Java versions (`javax.annotation.Nonnull` and `Nullable`). Both IntelliJ and Eclipse have built-in support for null detection using these annotations. No...