File tree Expand file tree Collapse file tree
sqldev/src/main/java/org/utplsql/sqldev/model/runner Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 */
1616package org .utplsql .sqldev .model .runner ;
1717
18+ import java .sql .Connection ;
1819import java .util .LinkedHashMap ;
1920import java .util .List ;
2021
@@ -39,6 +40,8 @@ public class Run {
3940 private LinkedHashMap <String , Test > tests ;
4041 private String status ;
4142 private Long start ;
43+ // to abort connections, producerConn is handled by UtplsqlRunner
44+ private Connection consumerConn ;
4245
4346 @ Override
4447 public String toString () {
@@ -235,4 +238,12 @@ public Long getStart() {
235238 public void setStart (final Long start ) {
236239 this .start = start ;
237240 }
241+
242+ public Connection getConsumerConn () {
243+ return consumerConn ;
244+ }
245+
246+ public void setConsumerConn (Connection consumerConn ) {
247+ this .consumerConn = consumerConn ;
248+ }
238249}
You can’t perform that action at this time.
0 commit comments