What is the purpose of GWT.create with RPC services?

What is the purpose of GWT.create () regarding RPC services? I understand that it allows you to delay the binding, but could not clearly understand how this relates to RPC services in my GWT application.

+3
source share
1 answer

GWT automatically generates an RPC implementation from the interface RemoteServiceand corresponds to the corresponding interface Async. GWT#create()is the glue between your application and the specific implementations created by the GWT code generators.

+3
source

All Articles