私は電話ギャップ(cordova)に基づいてアプリケーションを作成しています。私は何度かテストしましたが、最近、「プラグインはバックグラウンドスレッドを使用する必要があります」というメッセージがxcodeに表示されました。それでは、cordovaプラグインをアプリのバックグラウンドで実行することは可能ですか?もしそうなら、方法を教えてください。ありがとう!
バックグラウンドスレッドは、アプリがバックグラウンドで実行されているときにコードを実行するのと同じではありません。バックグラウンドスレッドは、長いタスクの実行中にUIをブロックしないようにするために使用されます。
IOSのバックグラウンドスレッドの例
- (void)myPluginMethod:(CDVInvokedUrlCommand*)command
{
// Check command.arguments here.
[self.commandDelegate runInBackground:^{
NSString* payload = nil;
// Some blocking logic...
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];
// The sendPluginResult method is thread-safe.
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}];
}
Androidのバックグラウンドスレッドの例
@Override
public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) throws JSONException {
if ("beep".equals(action)) {
final long duration = args.getLong(0);
cordova.getThreadPool().execute(new Runnable() {
public void run() {
...
callbackContext.success(); // Thread-safe.
}
});
return true;
}
return false;
}