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 be10e1f commit 99e013aCopy full SHA for 99e013a
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.GXObjectBase;
7
import com.genexus.mock.GXMockProvider;
8
import com.genexus.servlet.IServletContext;
@@ -122,4 +123,15 @@ protected void mockExecute() {
122
123
}
124
privateExecute( );
125
126
+
127
+ protected boolean batchCursorHolder(){
128
+ return false;
129
+ }
130
+ protected void exitApp() {
131
+ if (batchCursorHolder()) {
132
+ try {
133
+ Application.getConnectionManager().flushBuffers(remoteHandle, this);
134
+ } catch (Exception exception) { ; }
135
136
137
0 commit comments