Methods
abort()
Abort load: pass to listeners.
- Source
canLoadFile(_file) → {boolean}
Check if the loader can load the provided file. Always returns false.
Name | Type | Description |
---|---|---|
_file | File | The file to check. |
- Source
True if the file can be loaded.
- Type:
- boolean
canLoadMemory(_mem) → {boolean}
Check if the loader can load the provided memory object.
Name | Type | Description |
---|---|---|
_mem | object | The memory object. |
True if the url can be loaded.
- Type:
- boolean
canLoadUrl(url, optionsopt) → {boolean}
Check if the loader can load the provided url. True if one of the folowing conditions is true:
- the
options.forceLoader
is 'multipart', - the
options.requestHeaders
contains a 'Accept: multipart/related'.
Name | Type | Attributes | Description |
---|---|---|---|
url | string | The url to check. | |
options | object | <optional> | Optional url request options. |
True if the url can be loaded.
- Type:
- boolean
isLoading() → {boolean}
Is the load ongoing?
- Source
True if loading.
- Type:
- boolean
load(buffer, origin, index)
Load data.
Name | Type | Description |
---|---|---|
buffer | object | The DICOM buffer. |
origin | string | The data origin. |
index | number | The data index. |
- Source
loadFileAs() → {number}
Get the file content type needed by the loader.
One of the 'fileContentTypes'.
- Type:
- number
loadUrlAs() → {number}
Get the url content type needed by the loader.
One of the 'urlContentTypes'.
- Type:
- number
onabort(_event)
Handle an abort event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The abort event. |
onerror(_event)
Handle an error event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The error event. |
onload(_event)
Handle a load event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load event fired when a file has been loaded successfully. |
onloadend(_event)
Handle an load end event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load end event fired when a file load has completed, successfully or not. |
onloaditem(_event)
Handle a load item event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load item event fired when a file item has been loaded successfully. |
onloadstart(_event)
Handle a load start event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load start event. |
onprogress(_event)
Handle a load progress event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The progress event. |
setOptions(_opt)
Set the loader options.
Name | Type | Description |
---|---|---|
_opt | object | The input options. |
- Source