Notify read() when socket is closed.

This commit is contained in:
Marcus Cavanaugh 2014-12-12 16:51:35 -06:00
Родитель def7ec0cee
Коммит 3965a0f75e
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -78,6 +78,12 @@ Native.create("com/sun/midp/io/j2me/socket/Protocol.open0.([BI)V", function(ipBy
reject(new JavaException("java/io/IOException", message.error));
}
this.socket.onclose = function() {
if (this.waitingData) {
this.waitingData();
}
}.bind(this);
this.socket.ondata = (function(message) {
// console.log("this.socket.ondata: " + JSON.stringify(message));
var newArray = new Uint8Array(this.data.byteLength + message.data.byteLength);