fixed Android socket errors handling

This commit is contained in:
nikita.kosilo 2020-10-19 20:02:39 +03:00
parent 3de2552705
commit 04125dd98f
4 changed files with 13 additions and 8 deletions

View File

@ -165,4 +165,5 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 1.5.3 - added Android open and write timeouts [Android] - 1.5.3 - added Android open and write timeouts [Android]
- 1.5.4 - fixed iOS closing sockets on open timeout [iOS] - 1.5.4 - fixed iOS closing sockets on open timeout [iOS]
- 1.6.0 - close old existing sockets on reopen by destination ports. Removed iOS trash sources [iOS, Android] - 1.6.0 - close old existing sockets on reopen by destination ports. Removed iOS trash sources [iOS, Android]
- 1.7.0 - added codes to error handlers [iOS, Android] - 1.7.0 - added codes to error handlers [iOS, Android]
- 1.7.1 - error handler bugfixes [Android]

View File

@ -1,6 +1,6 @@
{ {
"name": "cordova-plugin-socket-tcp", "name": "cordova-plugin-socket-tcp",
"version": "1.7.0", "version": "1.7.1",
"description": "This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol. Currently we support these platforms: iOS, Android, WP8.", "description": "This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol. Currently we support these platforms: iOS, Android, WP8.",
"cordova": { "cordova": {
"platforms": [ "platforms": [

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-socket-tcp" version="1.7.0"> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-socket-tcp" version="1.7.1">
<name>SocketsForCordova</name> <name>SocketsForCordova</name>
<description> <description>
This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol. This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol.

View File

@ -278,11 +278,15 @@ public class SocketPlugin extends CordovaPlugin {
@Override @Override
public void accept(String errorMessage) { public void accept(String errorMessage) {
JSONObject event = new JSONObject(); try {
event.put("errorMessage", errorMessage); JSONObject event = new JSONObject();
event.put("socketKey", "key"); event.put("errorMessage", errorMessage);
event.put("code", 0); event.put("socketKey", "key");
this.openCallbackContext.error(event); event.put("code", 0);
this.openCallbackContext.error(event);
} catch (JSONException e) {
e.printStackTrace();
}
} }
} }