src/base/service-configured.ts
This interface is for indicating the nature of a service's configuration updates (configured$ observable).
Properties |
success |
success:
|
Type : boolean
|
Defined in src/base/service-configured.ts:7
|
TRUE if a model was successfully retrieved, FALSE otherwise |
uriChanged |
uriChanged:
|
Type : boolean
|
Defined in src/base/service-configured.ts:9
|
TRUE if the change related to this reconfiguration was a URI (endpoint) change, FALSE otherwise |
export interface IServiceConfigured {
/** TRUE if a model was successfully retrieved, FALSE otherwise */
success: boolean;
/** TRUE if the change related to this reconfiguration was a URI (endpoint) change, FALSE otherwise */
uriChanged: boolean;
}