public interface ExternalTextResource extends ResourcePrototype
TextResource
, except the contents of the resource are
not inlined into the compiled output. This is suitable for resources that are
not required as part of program initialization.Modifier and Type | Method and Description |
---|---|
void |
getText(ResourceCallback<TextResource> callback)
Fetches a
TextResource and calls callback with the result. |
getName
void getText(ResourceCallback<TextResource> callback) throws ResourceException
TextResource
and calls callback
with the result.
Caches after the first result, so callback
is invoked immediately for subsequent
invocations.ResourceException
- if the resource request cannot be initiated, e.g. due to an invalid
url or an AJAX security error (same origin violation)