Details
-
Type:
Bug
-
Status: Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 3.1
-
Fix Version/s: None
-
Component/s: Push Library
-
Labels:None
-
Environment:ICEpush
Description
This issue was found in the ICEmobile JSP application mvc-mediacast, but it may also occur with JSF use of ICEpush. When the following is used:
pushContext.push("photos");
pushContext.push("carousel");
the push to the carousel group is frequently delayed to the next heartbeat interval.
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #31169 | Thu Sep 27 17:51:38 MDT 2012 | ted.goddard | using single push group except for outvoted notification (PUSH-194) |
Files Changed | ||||
![]() ![]() ![]() ![]() ![]() |
Field | Original Value | New Value |
---|---|---|
Reporter | Migration [ remote ] | Ted Goddard [ ted.goddard ] |
Using a separate thread to invoke the push does not help, as well using different Timer instances (which should have separate Threads) does not help either.
{ pushContext.push("photos"); }pushTask = new TimerTask() {
public void run()
};
pushTimer.schedule(pushTask, 0);