[gwt-contrib] GWT 3 info on GWT CON?

2015-09-14 Thread Brian Pedersen
I am really looking forward to GWT CON in November, but so far no talks has been announced on GWT 3 related topics. I know that the blueprint are still in flux, but I also have a feeling that the core team knows exactly which direction they are pushing GWT. My biggest wish is to see a continuat

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Cristiano
Hi Thomas, now that the processor project is setup, updating it to allow each specific method to customize the return type or callback is tricky. OfCourse, the method needs to be someway annotated. If you plan to try to use the processor, please add an issue on github and I'll be pleased to imp

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Cristiano
Hi Jens, yeah, basically I do what you wanted to do with @RemoteService, but then I had to rearrange the dependencies (moved in a project where I couldn't depend on GWT) and so I moved to processing on the @Asynchronize annotation (which I created initially with a different name and purpose sim

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Thomas Broyer
IMO, it should be possible to set the "returnType" on each method of the interface, so you could have an async method returning 'void', another one returning 'Request' and yet another returning 'RequestBuilder', all in one interface. Same could be useful for the callback type too (and actually

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Jens
Hey, I actually also thought about that in the past but never had time to implement it. You can read my thoughts at https://groups.google.com/d/msg/codehaus-mojo-gwt-maven-plugin-users/tSI4ZqjNZD8/uMt0TMHW2sUJ Basically instead of @Asynchonize I would have used @RemoteService as that matches

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Cristiano
thanks! it should be ok now https://youtu.be/YC853Kkm_6E Il giorno lunedì 14 settembre 2015 15:14:13 UTC+2, Matic Petek ha scritto: > > Hi, > Your video is private. > > On Monday, September 14, 2015 at 2:50:02 PM UTC+2, Cristiano wrote: >> >> Hello all, >> >> we are using an annotation proces

[gwt-contrib] Re: External library to generate the remote service's Async interface

2015-09-14 Thread Matic Petek
Hi, Your video is private. On Monday, September 14, 2015 at 2:50:02 PM UTC+2, Cristiano wrote: > > Hello all, > > we are using an annotation processor to generate the async interfaces that > are required by the GWT RPC services. This annotation processor automatizes > the generation and works

[gwt-contrib] External library to generate the remote service's Async interface

2015-09-14 Thread Cristiano
Hello all, we are using an annotation processor to generate the async interfaces that are required by the GWT RPC services. This annotation processor automatizes the generation and works smoothly both with the maven build and on the IDE, plus we have other generation requirements and we have th