Monday, August 24, 2015

Re: JsInterop question ...

Any chance of reply? If it's a bad question I'm happy to hear that as well, just so I know I'm thinking about this the wrong way.

Regards,
Ben.

On Wednesday, 1 July 2015 05:30:17 UTC+10, Benjamin Tillman wrote:
Hey everyone, just a quick question regarding JsInterop: how is it proposed to manage javascript functions that can potentially take more than one type of parameter? For example, take the websocket interface:

@JsType(prototype = "WebSocket")
public interface WebSocket extends EventTarget {

 
... blah blah.

 
void send(String data);
  // void send(Blob data); <-- JsInterop forbids this

}

I suppose that the following is possible

@JsType(prototype = "WebSocket")
public interface WebSocket extends EventTarget {

 
void send(Object data);

}

but ... this doesn't seem ideal from a Java perspective :)

Regards,
Ben.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment