diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-02-06 11:17:34 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-02-06 11:17:34 +0100 |
commit | 18ab8207bd14def950fd399c60d9ee54fab75d3b (patch) | |
tree | a82af333127184acc6be6e0969919cb20be5e8b3 /js/src/Ice/ObjectPrx.js | |
parent | Fixed ICE-7548 - getAdminProxy no longer returns 0 if synchronization is in p... (diff) | |
download | ice-18ab8207bd14def950fd399c60d9ee54fab75d3b.tar.bz2 ice-18ab8207bd14def950fd399c60d9ee54fab75d3b.tar.xz ice-18ab8207bd14def950fd399c60d9ee54fab75d3b.zip |
Fixed ICE-7169 and ICE-7375 - add option to specify if batch requests flushed with the communicator/connection should be compressed
Diffstat (limited to 'js/src/Ice/ObjectPrx.js')
-rw-r--r-- | js/src/Ice/ObjectPrx.js | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/js/src/Ice/ObjectPrx.js b/js/src/Ice/ObjectPrx.js index d68043eac47..506587e90d6 100644 --- a/js/src/Ice/ObjectPrx.js +++ b/js/src/Ice/ObjectPrx.js @@ -44,7 +44,7 @@ class ObjectPrx this._reference = null; this._requestHandler = null; } - + hashCode(r) { return this._reference.hashCode(); @@ -411,19 +411,6 @@ class ObjectPrx } } - ice_compress(co) - { - const ref = this._reference.changeCompress(co); - if(ref.equals(this._reference)) - { - return this; - } - else - { - return this._newInstance(ref); - } - } - ice_timeout(t) { if(t < 1 && t !== -1) @@ -661,7 +648,7 @@ class ObjectPrx } return false; } - + // // Generic invocation for operations that have input parameters. // @@ -878,7 +865,7 @@ class ObjectPrx return false; } - + static ice_staticId() { return this._id; |