Archived:Canceling an asynchronous silent uninstallation takes a long time
hamishwillee
(Talk | contribs) m (Text replace - "Category:S60 3rd Edition, Feature Pack 2" to "Category:S60 3rd Edition FP2") |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Fix metadata) |
||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category: | + | {{Archived|timestamp=20120313123354|user=roy.debjit| }} |
| − | + | [[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category:Known Issue]][[Category:Symbian]][[Category:Deployment/Installation]] | |
| − | + | {{ArticleMetaData <!-- v1.2 --> | |
| − | + | ||
| − | {{ArticleMetaData | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
|sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| − | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | + | |devices= Nokia N78, Nokia 6210 |
| − | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | + | |platform= S60 3rd Edition, FP2 |
| − | |capabilities=<!-- Capabilities required (e.g. Location, NetworkServices. | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| − | |author=[[User:Technical writer 1]] | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20080904 | ||
| + | |author= [[User:Technical writer 1]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |id= TSS001089 | ||
}} | }} | ||
| − | |||
== Overview == | == Overview == | ||
| − | + | {{Icode|RSWInstSilentLauncher}} is the client-side handle used to access SW Installer UI services. It can be used to silently install/uninstall the SISX without user intervention. The silent install and uninstall methods have both synchronous and asynchronous versions. | |
The [[SW Installer Launcher API]] is part of the [[SDK API Plug-in]] package for S60 3rd Edition, FP2. | The [[SW Installer Launcher API]] is part of the [[SDK API Plug-in]] package for S60 3rd Edition, FP2. | ||
| Line 29: | Line 33: | ||
== Description == | == Description == | ||
If the uninstallation of an application is started using the asynchronous | If the uninstallation of an application is started using the asynchronous | ||
| − | version of | + | version of {{Icode|SwiUI::RSWInstLauncher::SilentUninstall}}, it can be canceled by calling the method {{Icode|SwiUI::RSWInstLauncher::CancelAsyncRequest(TInt aReqToCancel)}}. |
The cancellation process of an asynchronous silent uninstall operation takes a long time (more than 10 seconds) and any attempt to start another operation during this time causes the S60 Installer to hang. | The cancellation process of an asynchronous silent uninstall operation takes a long time (more than 10 seconds) and any attempt to start another operation during this time causes the S60 Installer to hang. | ||
| Line 38: | Line 42: | ||
| − | <!-- Translation --> [[zh-hans:取消一次异步后台卸载将需很长时间]] | + | <!-- Translation --> [[zh-hans:Archived:取消一次异步后台卸载将需很长时间]] |
Latest revision as of 09:49, 7 September 2012
Article Metadata
Tested with
Compatibility
Article
Overview
RSWInstSilentLauncher is the client-side handle used to access SW Installer UI services. It can be used to silently install/uninstall the SISX without user intervention. The silent install and uninstall methods have both synchronous and asynchronous versions.
The SW Installer Launcher API is part of the SDK API Plug-in package for S60 3rd Edition, FP2.
Description
If the uninstallation of an application is started using the asynchronous version of SwiUI::RSWInstLauncher::SilentUninstall, it can be canceled by calling the method SwiUI::RSWInstLauncher::CancelAsyncRequest(TInt aReqToCancel).
The cancellation process of an asynchronous silent uninstall operation takes a long time (more than 10 seconds) and any attempt to start another operation during this time causes the S60 Installer to hang.
Solution
No solution exists.

