From b2d61679fbb544e9af8c06b0d6375131954db9e2 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Tue, 16 Apr 2013 15:04:56 -0400 Subject: [PATCH] [CB-2963] Re-enable sending messages in batches. Disabled by CB-1745, which is now reverted. --- .../src/org/apache/cordova/NativeToJsMessageQueue.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/framework/src/org/apache/cordova/NativeToJsMessageQueue.java b/framework/src/org/apache/cordova/NativeToJsMessageQueue.java index ea684a42..8a13213f 100755 --- a/framework/src/org/apache/cordova/NativeToJsMessageQueue.java +++ b/framework/src/org/apache/cordova/NativeToJsMessageQueue.java @@ -50,13 +50,10 @@ public class NativeToJsMessageQueue { // exec() is asynchronous. Set this to true when running bridge benchmarks. static final boolean DISABLE_EXEC_CHAINING = false; - // Upper limit for how much data to send to JS in one shot. - // TODO(agrieve): This is currently disable. It should be re-enabled once we - // remove support for returning values from exec() calls. This was - // deprecated in 2.2.0. - // Also, this currently only chops up on message boundaries. It may be useful + // Arbitrarily chosen upper limit for how much data to send to JS in one shot. + // This currently only chops up on message boundaries. It may be useful // to allow it to break up messages. - private static int MAX_PAYLOAD_SIZE = -1; //50 * 1024 * 10240; + private static int MAX_PAYLOAD_SIZE = 50 * 1024 * 10240; /** * The index into registeredListeners to treat as active.