As Andres pointed, it is better for GPars to have its own DSL.

Cheers,
Daniel.Sun



在 "jnorthr [via Groovy]" <ml-node+s329449n5737578...@n5.nabble.com>,2017年1月8日 
上午1:35写道:

Russel is working on GPars v2.0 so have asked him if this proposed change is 
do-able.

On 7 January 2017 at 18:28, Andres Almiray <[hidden email]> wrote:
This is a slippery slope IMHO.

Adding custom syntax support in core for GPars might sound like a good idea 
given the fact that GPars is bundled with core. OTOH what about Spock, Grails, 
Ratpack and others? Wouldn't they benefit from custom syntax too? probably yes. 
Are they bundled with core? no, and they shouldn't.

My recommendation would be to prototype an AST transformation that can support 
the syntax, just like Spock does it.

One more thing, I would be very sad to see Groovy become a pale shade of Scala. 
Custom syntax and new operators are pushing Groovy in that direction.

Cheers
Andres

Sent from my primitive Tricorder

> On Jan 7, 2017, at 6:21 PM, Daniel Sun <[hidden email]> wrote:
>
> class ActorTest  {
>    def counter = new Counter()
>    counter.start()
>
>    for (i in 0 .. 100000) {
>        counter <- i    // send message to the counter actor
>    }
> }
>
> should be modified as:
>
> class ActorTest  {
>    public static void main(String[] args) {
>        def counter = new Counter()
>        counter.start()
>
>        for (i in 0 .. 100000) {
>          counter <- i    // send message to the counter actor
>        }
>    }
> }
>
>
>
> --
> View this message in context: 
> http://groovy.329449.n5.nabble.com/About-actor-syntax-for-Groovy-3-tp5737574p5737575.html
> Sent from the Groovy Dev mailing list archive at Nabble.com.



________________________________
If you reply to this email, your message will be added to the discussion below:
http://groovy.329449.n5.nabble.com/About-actor-syntax-for-Groovy-3-tp5737574p5737578.html
To unsubscribe from About actor syntax for Groovy 3, click 
here<http://groovy.329449.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=5737574&code=cmVhbGJsdWVzdW5AaG90bWFpbC5jb218NTczNzU3NHwxMTQ2MjE4MjI1>.
NAML<http://groovy.329449.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>




--
View this message in context: 
http://groovy.329449.n5.nabble.com/About-actor-syntax-for-Groovy-3-tp5737574p5737583.html
Sent from the Groovy Dev mailing list archive at Nabble.com.

Reply via email to