Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2d9210 commit b3449b9Copy full SHA for b3449b9
sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax/SimplePipeRunnable.java
@@ -85,6 +85,17 @@ public void setPipeMode(int pipeMode) {
85
this.pipeMode = pipeMode;
86
}
87
88
+ /**
89
+ * Detect whether it is OK to send a status ok heart beat or not.
90
+ * This method is considered as CPU sensitive.
91
+ * @param now
92
+ * @return whether send heart beat or not
93
+ */
94
+ @J2SIgnore
95
+ public boolean checkCometStatus(long now) {
96
+ return false;
97
+ }
98
+
99
@J2SIgnore
100
public List<SimpleSerializable> getPipeData() {
101
return pipeData;
0 commit comments