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 abbd1f5 commit fb5afb7Copy full SHA for fb5afb7
java/src/main/java/com/genexus/webpanels/GXWebProcedure.java
@@ -2,6 +2,7 @@
2
3
import java.io.PrintWriter;
4
5
+import com.genexus.Application;
6
import com.genexus.servlet.IServletContext;
7
import com.genexus.servlet.ServletContext;
8
import com.genexus.servlet.http.IHttpServletRequest;
@@ -105,5 +106,17 @@ protected boolean isSpaSupported()
105
106
protected void callWebObject(String url)
107
{
108
httpContext.wjLoc = url;
- }
109
+ }
110
+
111
+ protected boolean batchCursorHolder(){
112
+ return false;
113
114
115
+ protected void exitApp() {
116
+ if (batchCursorHolder()) {
117
+ try {
118
+ Application.getConnectionManager().flushBuffers(remoteHandle, this);
119
+ } catch (Exception exception) { ; }
120
121
122
}
0 commit comments